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