Overview
Summary
Contact
Donate
Imprint
Prompt for the
MessageMediaView
Please create a React-JS view called "MessageMediaView" for the fields of the MessageMedia entity. The MessageMediaView must contain the following fields: - name: Caption type: STRING - name: ChatMessage type: ChatMessage - name: DurationSeconds type: LONG - name: Height type: LONG - name: MediaFile type: MediaFile - name: MediaType type: STRING - name: ThumbnailMediaFile type: MediaFile - name: Width type: LONG The data source for the [MediaFile] select control should be loaded from the relative URL: "/MediaFileService/mediafile" (HTTP-GET) The data source for the [ThumbnailMediaFile] select control should be loaded from the relative URL: "/MediaFileService/mediafile" (HTTP-GET) The data source for the [ChatMessage] select control should be loaded from the relative URL: "/ChatMessageService/chatmessage" (HTTP-GET) An existing MessageMedia entity should be loaded from the relative URL: "/ChatMessageService/messagemedia/{id}" (HTTP-GET) If a new MessageMedia entity has been created, the new entity should be posted to the relative URL: "/ChatMessageService/messagemedia" (HTTP-POST) If an existing MessageMedia entity has been updated, the modified entity should be sent to the relative URL: "/ChatMessageService/messagemedia/{id}" (HTTP-PUT) If an existing MessageMedia entity has to be deleted, the following relative URL should be called: "/ChatMessageService/messagemedia/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint