Overview
Summary
Contact
Donate
Imprint
Prompt for the
AppVersionView
Please create a React-JS view called "AppVersionView" for the fields of the AppVersion entity. The AppVersionView must contain the following fields: - name: PlatformSupport type: PlatformSupport - name: ReleaseChannel type: STRING - name: ReleaseDate type: DATE - name: SizeMegabytes type: STRING - name: VersionString type: STRING The data source for the [PlatformSupport] select control should be loaded from the relative URL: "/UserDeviceService/platformsupport" (HTTP-GET) An existing AppVersion entity should be loaded from the relative URL: "/UserDeviceService/appversion/{id}" (HTTP-GET) If a new AppVersion entity has been created, the new entity should be posted to the relative URL: "/UserDeviceService/appversion" (HTTP-POST) If an existing AppVersion entity has been updated, the modified entity should be sent to the relative URL: "/UserDeviceService/appversion/{id}" (HTTP-PUT) If an existing AppVersion entity has to be deleted, the following relative URL should be called: "/UserDeviceService/appversion/{id}" (HTTP-DELETE) Add a HTML table to the view with the following UserDevice columns: - column: CreatedAt - column: AppVersion - column: IsPrimary - column: DeviceModel - column: OsVersion - column: UserAccount - column: LastSeenAt - column: PlatformSupport The table should have the title "UserDevices" und the data must be loaded from the server with the following relative URL: "/UserDeviceService/userdevice/appversion/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint