Overview
Summary
Contact
Donate
Imprint
Prompt for the
PlatformSupportView
Please create a React-JS view called "PlatformSupportView" for the fields of the PlatformSupport entity. The PlatformSupportView must contain the following fields: - name: MinOsVersion type: STRING - name: Name type: STRING - name: Notes type: STRING - name: Status type: STRING - name: Type type: STRING An existing PlatformSupport entity should be loaded from the relative URL: "/UserDeviceService/platformsupport/{id}" (HTTP-GET) If a new PlatformSupport entity has been created, the new entity should be posted to the relative URL: "/UserDeviceService/platformsupport" (HTTP-POST) If an existing PlatformSupport entity has been updated, the modified entity should be sent to the relative URL: "/UserDeviceService/platformsupport/{id}" (HTTP-PUT) If an existing PlatformSupport entity has to be deleted, the following relative URL should be called: "/UserDeviceService/platformsupport/{id}" (HTTP-DELETE) Add a HTML table to the view with the following AppVersion columns: - column: PlatformSupport - column: VersionString - column: ReleaseDate - column: ReleaseChannel - column: SizeMegabytes The table should have the title "AppVersions" und the data must be loaded from the server with the following relative URL: "/UserDeviceService/appversion/platformsupport/{id}" 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/platformsupport/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint