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