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: Chat type: Chat - name: ChatMessage type: ChatMessage - name: CreatedAt type: DATE - name: Details type: STRING - name: Reason type: STRING - name: ReportedUserAccount type: UserAccount - name: ReporterUserAccount type: UserAccount - name: Status type: STRING The data source for the [ReporterUserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [ReportedUserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [ChatMessage] select control should be loaded from the relative URL: "/ChatMessageService/chatmessage" (HTTP-GET) The data source for the [Chat] select control should be loaded from the relative URL: "/ChatService/chat" (HTTP-GET) An existing AbuseReport entity should be loaded from the relative URL: "/ChatMessageService/abusereport/{id}" (HTTP-GET) If a new AbuseReport entity has been created, the new entity should be posted to the relative URL: "/ChatMessageService/abusereport" (HTTP-POST) If an existing AbuseReport entity has been updated, the modified entity should be sent to the relative URL: "/ChatMessageService/abusereport/{id}" (HTTP-PUT) If an existing AbuseReport entity has to be deleted, the following relative URL should be called: "/ChatMessageService/abusereport/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint