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