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: CreatedAt type: DATE - name: IsRead type: BOOL - name: PayloadJson type: STRING - name: Type type: STRING - name: User type: User The data source for the [User] select control should be loaded from the relative URL: "/UserService/user" (HTTP-GET) An existing Notification entity should be loaded from the relative URL: "/AdService/notification/{id}" (HTTP-GET) If a new Notification entity has been created, the new entity should be posted to the relative URL: "/AdService/notification" (HTTP-POST) If an existing Notification entity has been updated, the modified entity should be sent to the relative URL: "/AdService/notification/{id}" (HTTP-PUT) If an existing Notification entity has to be deleted, the following relative URL should be called: "/AdService/notification/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint