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: GroupChat type: GroupChat - name: IsBanned type: BOOL - name: JoinedAt type: DATE - name: LeftAt type: DATE - name: Role type: STRING - name: UserAccount type: UserAccount The data source for the [GroupChat] select control should be loaded from the relative URL: "/ConversationService/groupchat" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing GroupMember entity should be loaded from the relative URL: "/StickerPackService/groupmember/{id}" (HTTP-GET) If a new GroupMember entity has been created, the new entity should be posted to the relative URL: "/StickerPackService/groupmember" (HTTP-POST) If an existing GroupMember entity has been updated, the modified entity should be sent to the relative URL: "/StickerPackService/groupmember/{id}" (HTTP-PUT) If an existing GroupMember entity has to be deleted, the following relative URL should be called: "/StickerPackService/groupmember/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint