Overview
Summary
Contact
Donate
Imprint
Prompt for the
DataBreachView
Please create a React-JS view called "DataBreachView" for the fields of the DataBreach entity. The DataBreachView must contain the following fields: - name: Company type: Company - name: Description type: STRING - name: IncidentDate type: DATE - name: Name type: STRING - name: RansomDemanded type: BOOL - name: RecordsAffected type: LONG - name: ThirdPartyVendor type: SupportVendor The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [ThirdPartyVendor] select control should be loaded from the relative URL: "/SupportVendorService/supportvendor" (HTTP-GET) An existing DataBreach entity should be loaded from the relative URL: "/SupportVendorService/databreach/{id}" (HTTP-GET) If a new DataBreach entity has been created, the new entity should be posted to the relative URL: "/SupportVendorService/databreach" (HTTP-POST) If an existing DataBreach entity has been updated, the modified entity should be sent to the relative URL: "/SupportVendorService/databreach/{id}" (HTTP-PUT) If an existing DataBreach entity has to be deleted, the following relative URL should be called: "/SupportVendorService/databreach/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BreachDataExposure columns: - column: BreachDataType - column: EstimatedCount - column: IsConfirmed - column: DataBreach The table should have the title "BreachDataExposures" und the data must be loaded from the server with the following relative URL: "/SubscriptionPlanService/breachdataexposure/databreach/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint