Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserSettingView
Please create a React-JS view called "UserSettingView" for the fields of the UserSetting entity. The UserSettingView must contain the following fields: - name: CreatedAt type: DATE - name: DisappearingMessagesDefaultSeconds type: INT - name: LastSeenSharing type: STRING - name: ReadReceiptsEnabled type: BOOL - name: Theme type: STRING - name: TypingIndicatorsEnabled type: BOOL - name: UpdatedAt type: DATE - name: UserAccount type: UserAccount The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing UserSetting entity should be loaded from the relative URL: "/ServerNodeService/usersetting/{id}" (HTTP-GET) If a new UserSetting entity has been created, the new entity should be posted to the relative URL: "/ServerNodeService/usersetting" (HTTP-POST) If an existing UserSetting entity has been updated, the modified entity should be sent to the relative URL: "/ServerNodeService/usersetting/{id}" (HTTP-PUT) If an existing UserSetting entity has to be deleted, the following relative URL should be called: "/ServerNodeService/usersetting/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint