Overview
Summary
Contact
Donate
Imprint
Prompt for the
NotificationSettingView
Please create a React-JS view called "NotificationSettingView" for the fields of the NotificationSetting entity. The NotificationSettingView must contain the following fields: - name: Conversation type: Conversation - name: CreatedAt type: DATE - name: CustomSound type: STRING - name: IsMuted type: BOOL - name: MutedUntil type: DATE - name: ShowPreview type: BOOL - name: UpdatedAt type: DATE - name: UserAccount type: UserAccount The data source for the [Conversation] select control should be loaded from the relative URL: "/ConversationService/conversation" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing NotificationSetting entity should be loaded from the relative URL: "/ConversationService/notificationsetting/{id}" (HTTP-GET) If a new NotificationSetting entity has been created, the new entity should be posted to the relative URL: "/ConversationService/notificationsetting" (HTTP-POST) If an existing NotificationSetting entity has been updated, the modified entity should be sent to the relative URL: "/ConversationService/notificationsetting/{id}" (HTTP-PUT) If an existing NotificationSetting entity has to be deleted, the following relative URL should be called: "/ConversationService/notificationsetting/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint