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: Category type: STRING - name: CreatedAt type: STRING - name: Description type: STRING - name: ReportedTweet type: Tweet - name: ReportedUser type: UserAccount - name: ReporterUser type: UserAccount - name: ResolvedAt type: STRING - name: ResolverUser type: UserAccount - name: Status type: STRING The data source for the [ResolverUser] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (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 [ReportedTweet] select control should be loaded from the relative URL: "/TweetService/tweet" (HTTP-GET) The data source for the [ReporterUser] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing Report entity should be loaded from the relative URL: "/SpaceService/report/{id}" (HTTP-GET) If a new Report entity has been created, the new entity should be posted to the relative URL: "/SpaceService/report" (HTTP-POST) If an existing Report entity has been updated, the modified entity should be sent to the relative URL: "/SpaceService/report/{id}" (HTTP-PUT) If an existing Report entity has to be deleted, the following relative URL should be called: "/SpaceService/report/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint