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