Overview
Summary
Contact
Donate
Imprint
Prompt for the
ReportView
Please create a React-JS view called "ReportView" for the fields of the Report entity. The ReportView must contain the following fields: - name: Comment type: Comment - name: CreatedAt type: DATE - name: Details type: STRING - name: Post type: Post - name: Reason type: STRING - name: Reel type: Reel - name: ReportedUser type: UserAccount - name: Reporter type: UserAccount - name: Status type: STRING - name: Story type: Story - name: UpdatedAt type: DATE The data source for the [Comment] select control should be loaded from the relative URL: "/StoryService/comment" (HTTP-GET) The data source for the [ReportedUser] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [Post] select control should be loaded from the relative URL: "/UserAccountService/post" (HTTP-GET) The data source for the [Reporter] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [Reel] select control should be loaded from the relative URL: "/ReelService/reel" (HTTP-GET) The data source for the [Story] select control should be loaded from the relative URL: "/StoryService/story" (HTTP-GET) An existing Report entity should be loaded from the relative URL: "/StoryService/report/{id}" (HTTP-GET) If a new Report entity has been created, the new entity should be posted to the relative URL: "/StoryService/report" (HTTP-POST) If an existing Report entity has been updated, the modified entity should be sent to the relative URL: "/StoryService/report/{id}" (HTTP-PUT) If an existing Report entity has to be deleted, the following relative URL should be called: "/StoryService/report/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint