Overview
Summary
Contact
Donate
Imprint
Prompt for the
CaptionView
Please create a React-JS view called "CaptionView" for the fields of the Caption entity. The CaptionView must contain the following fields: - name: CreatedAt type: DATE - name: Format type: STRING - name: IsAutoGenerated type: BOOL - name: Language type: STRING - name: Name type: STRING - name: StorageKey type: STRING - name: UpdatedAt type: DATE - name: Video type: Video The data source for the [Video] select control should be loaded from the relative URL: "/VideoService/video" (HTTP-GET) An existing Caption entity should be loaded from the relative URL: "/CommentService/caption/{id}" (HTTP-GET) If a new Caption entity has been created, the new entity should be posted to the relative URL: "/CommentService/caption" (HTTP-POST) If an existing Caption entity has been updated, the modified entity should be sent to the relative URL: "/CommentService/caption/{id}" (HTTP-PUT) If an existing Caption entity has to be deleted, the following relative URL should be called: "/CommentService/caption/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint