Overview
Summary
Contact
Donate
Imprint
Prompt for the
AbuseReportView
Please create a React-JS view called "AbuseReportView" for the fields of the AbuseReport entity. The AbuseReportView must contain the following fields: - name: Category type: STRING - name: CreatedAt type: DATE - name: Description type: STRING - name: GroupChat type: GroupChat - name: HandledAt type: DATE - name: HandlerNote type: STRING - name: Message type: Message - name: ReportedUserAccount type: LONG - name: ReporterUserAccount type: LONG The data source for the [GroupChat] select control should be loaded from the relative URL: "/ConversationService/groupchat" (HTTP-GET) The data source for the [Message] select control should be loaded from the relative URL: "/MessageService/message" (HTTP-GET) An existing AbuseReport entity should be loaded from the relative URL: "/ConversationService/abusereport/{id}" (HTTP-GET) If a new AbuseReport entity has been created, the new entity should be posted to the relative URL: "/ConversationService/abusereport" (HTTP-POST) If an existing AbuseReport entity has been updated, the modified entity should be sent to the relative URL: "/ConversationService/abusereport/{id}" (HTTP-PUT) If an existing AbuseReport entity has to be deleted, the following relative URL should be called: "/ConversationService/abusereport/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint