Overview
Summary
Contact
Donate
Imprint
Prompt for the
GroupMemberView
Please create a React-JS view called "GroupMemberView" for the fields of the GroupMember entity. The GroupMemberView must contain the following fields: - name: Group type: Group - name: InvitedByUser type: UserAccount - name: IsApproved type: BOOL - name: JoinedAt type: DATE - name: Role type: STRING - name: User type: UserAccount The data source for the [Group] select control should be loaded from the relative URL: "/GroupService/group" (HTTP-GET) The data source for the [User] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [InvitedByUser] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing GroupMember entity should be loaded from the relative URL: "/GroupService/groupmember/{id}" (HTTP-GET) If a new GroupMember entity has been created, the new entity should be posted to the relative URL: "/GroupService/groupmember" (HTTP-POST) If an existing GroupMember entity has been updated, the modified entity should be sent to the relative URL: "/GroupService/groupmember/{id}" (HTTP-PUT) If an existing GroupMember entity has to be deleted, the following relative URL should be called: "/GroupService/groupmember/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint