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: Comment type: Comment - name: CreatedAt type: DATE - name: DirectMessage type: DirectMessage - name: IsRead type: BOOL - name: Post type: Post - name: Reel type: Reel - name: SourceUser type: UserAccount - name: Story type: Story - name: Type type: STRING - name: UserAccount type: UserAccount The data source for the [DirectMessage] select control should be loaded from the relative URL: "/DirectThreadService/directmessage" (HTTP-GET) The data source for the [Comment] select control should be loaded from the relative URL: "/StoryService/comment" (HTTP-GET) The data source for the [SourceUser] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [Post] select control should be loaded from the relative URL: "/UserAccountService/post" (HTTP-GET) The data source for the [Reel] select control should be loaded from the relative URL: "/ReelService/reel" (HTTP-GET) The data source for the [Story] select control should be loaded from the relative URL: "/StoryService/story" (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: "/ReelService/notification/{id}" (HTTP-GET) If a new Notification entity has been created, the new entity should be posted to the relative URL: "/ReelService/notification" (HTTP-POST) If an existing Notification entity has been updated, the modified entity should be sent to the relative URL: "/ReelService/notification/{id}" (HTTP-PUT) If an existing Notification entity has to be deleted, the following relative URL should be called: "/ReelService/notification/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint