Overview
Summary
Contact
Donate
Imprint
Prompt for the
CommentReportView
Please create a React-JS view called "CommentReportView" for the fields of the CommentReport entity. The CommentReportView must contain the following fields: - name: Comment type: Comment - 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 The data source for the [Comment] select control should be loaded from the relative URL: "/CommentService/comment" (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 CommentReport entity should be loaded from the relative URL: "/UserService/commentreport/{id}" (HTTP-GET) If a new CommentReport entity has been created, the new entity should be posted to the relative URL: "/UserService/commentreport" (HTTP-POST) If an existing CommentReport entity has been updated, the modified entity should be sent to the relative URL: "/UserService/commentreport/{id}" (HTTP-PUT) If an existing CommentReport entity has to be deleted, the following relative URL should be called: "/UserService/commentreport/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint