Overview
Summary
Contact
Donate
Imprint
Prompt for the
DeviceView
Please create a React-JS view called "DeviceView" for the fields of the Device entity. The DeviceView must contain the following fields: - name: AppVersion type: STRING - name: CreatedAt type: DATE - name: IsPushEnabled type: BOOL - name: LastActiveAt type: DATE - name: OsVersion type: STRING - name: Platform type: STRING - 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 Device entity should be loaded from the relative URL: "/DirectThreadService/device/{id}" (HTTP-GET) If a new Device entity has been created, the new entity should be posted to the relative URL: "/DirectThreadService/device" (HTTP-POST) If an existing Device entity has been updated, the modified entity should be sent to the relative URL: "/DirectThreadService/device/{id}" (HTTP-PUT) If an existing Device entity has to be deleted, the following relative URL should be called: "/DirectThreadService/device/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint