Overview
Summary
Contact
Donate
Imprint
Prompt for the
SkillEndorsementView
Please create a React-JS view called "SkillEndorsementView" for the fields of the SkillEndorsement entity. The SkillEndorsementView must contain the following fields: - name: Comment type: STRING - name: CreatedAt type: DATE - name: EndorserUser type: UserAccount - name: Skill type: Skill - name: TargetUser type: UserAccount The data source for the [EndorserUser] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [Skill] select control should be loaded from the relative URL: "/SkillService/skill" (HTTP-GET) The data source for the [TargetUser] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing SkillEndorsement entity should be loaded from the relative URL: "/UserAccountService/skillendorsement/{id}" (HTTP-GET) If a new SkillEndorsement entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/skillendorsement" (HTTP-POST) If an existing SkillEndorsement entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/skillendorsement/{id}" (HTTP-PUT) If an existing SkillEndorsement entity has to be deleted, the following relative URL should be called: "/UserAccountService/skillendorsement/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint