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