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: CallDuration type: CallDuration - name: IsMuted type: BOOL - name: IsVideoEnabled type: BOOL - name: JoinedAt type: DATE - name: LeftAt type: DATE - name: MediaStatus type: STRING - name: UserAccount type: UserAccount The data source for the [CallDuration] select control should be loaded from the relative URL: "/CallDurationService/callduration" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing CallParticipant entity should be loaded from the relative URL: "/CallDurationService/callparticipant/{id}" (HTTP-GET) If a new CallParticipant entity has been created, the new entity should be posted to the relative URL: "/CallDurationService/callparticipant" (HTTP-POST) If an existing CallParticipant entity has been updated, the modified entity should be sent to the relative URL: "/CallDurationService/callparticipant/{id}" (HTTP-PUT) If an existing CallParticipant entity has to be deleted, the following relative URL should be called: "/CallDurationService/callparticipant/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint