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