Overview
Summary
Contact
Donate
Imprint
Prompt for the
VideoReportView
Please create a React-JS view called "VideoReportView" for the fields of the VideoReport entity. The VideoReportView must contain the following fields: - name: CreatedAt type: DATE - name: Description type: STRING - name: ReasonCode type: STRING - name: ReporterUser type: User - name: ResolvedAt type: DATE - name: ResolvedByUser type: User - name: Status type: STRING - name: Video type: Video The data source for the [Video] select control should be loaded from the relative URL: "/VideoService/video" (HTTP-GET) The data source for the [ResolvedByUser] select control should be loaded from the relative URL: "/UserService/user" (HTTP-GET) The data source for the [ReporterUser] select control should be loaded from the relative URL: "/UserService/user" (HTTP-GET) An existing VideoReport entity should be loaded from the relative URL: "/VideoService/videoreport/{id}" (HTTP-GET) If a new VideoReport entity has been created, the new entity should be posted to the relative URL: "/VideoService/videoreport" (HTTP-POST) If an existing VideoReport entity has been updated, the modified entity should be sent to the relative URL: "/VideoService/videoreport/{id}" (HTTP-PUT) If an existing VideoReport entity has to be deleted, the following relative URL should be called: "/VideoService/videoreport/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint