Overview
Summary
Contact
Donate
Imprint
Prompt for the
SecurityIncidentView
Please create a React-JS view called "SecurityIncidentView" for the fields of the SecurityIncident entity. The SecurityIncidentView must contain the following fields: - name: Description type: STRING - name: DetectedAt type: DATE - name: Merchant type: Merchant - name: ResolvedAt type: DATE - name: Severity type: STRING - name: Type type: STRING - name: UserAccount type: UserAccount The data source for the [Merchant] select control should be loaded from the relative URL: "/MerchantService/merchant" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing SecurityIncident entity should be loaded from the relative URL: "/RegionService/securityincident/{id}" (HTTP-GET) If a new SecurityIncident entity has been created, the new entity should be posted to the relative URL: "/RegionService/securityincident" (HTTP-POST) If an existing SecurityIncident entity has been updated, the modified entity should be sent to the relative URL: "/RegionService/securityincident/{id}" (HTTP-PUT) If an existing SecurityIncident entity has to be deleted, the following relative URL should be called: "/RegionService/securityincident/{id}" (HTTP-DELETE) Add a HTML table to the view with the following SupportCase columns: - column: Description - column: Status - column: Subject - column: Channel - column: Dispute - column: UserAccount - column: ClosedAt - column: Transaction - column: OpenedAt - column: SecurityIncident The table should have the title "SupportCases" und the data must be loaded from the server with the following relative URL: "/UserAccountService/supportcase/securityincident/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint