Overview
Summary
Contact
Donate
Imprint
Prompt for the
NotificationView
Please create a React-JS view called "NotificationView" for the fields of the Notification entity. The NotificationView must contain the following fields: - name: AlertEvent type: AlertEvent - name: Body type: STRING - name: Channel type: STRING - name: DeliveryStatus type: STRING - name: ErrorMessage type: STRING - name: SentUtc type: DATE - name: Subject type: STRING - name: UserAccount type: UserAccount The data source for the [AlertEvent] select control should be loaded from the relative URL: "/PortService/alertevent" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing Notification entity should be loaded from the relative URL: "/FleetService/notification/{id}" (HTTP-GET) If a new Notification entity has been created, the new entity should be posted to the relative URL: "/FleetService/notification" (HTTP-POST) If an existing Notification entity has been updated, the modified entity should be sent to the relative URL: "/FleetService/notification/{id}" (HTTP-PUT) If an existing Notification entity has to be deleted, the following relative URL should be called: "/FleetService/notification/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint