Overview
Summary
Contact
Donate
Imprint
Prompt for the
CallDurationView
Please create a React-JS view called "CallDurationView" for the fields of the CallDuration entity. The CallDurationView must contain the following fields: - name: CallType type: STRING - name: Conversation type: Conversation - name: EndedAt type: DATE - name: InitiatorUserAccount type: LONG - name: ProtocolVersion type: STRING - name: StartedAt type: DATE - name: TerminationReason type: STRING The data source for the [Conversation] select control should be loaded from the relative URL: "/ConversationService/conversation" (HTTP-GET) An existing CallDuration entity should be loaded from the relative URL: "/CallDurationService/callduration/{id}" (HTTP-GET) If a new CallDuration entity has been created, the new entity should be posted to the relative URL: "/CallDurationService/callduration" (HTTP-POST) If an existing CallDuration entity has been updated, the modified entity should be sent to the relative URL: "/CallDurationService/callduration/{id}" (HTTP-PUT) If an existing CallDuration entity has to be deleted, the following relative URL should be called: "/CallDurationService/callduration/{id}" (HTTP-DELETE) Add a HTML table to the view with the following CallParticipant columns: - column: UserAccount - column: MediaStatus - column: IsMuted - column: IsVideoEnabled - column: JoinedAt - column: LeftAt - column: CallDuration The table should have the title "CallParticipants" und the data must be loaded from the server with the following relative URL: "/CallDurationService/callparticipant/callduration/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint