Overview
Summary
Contact
Donate
Imprint
Prompt for the
AppView
Please create a React-JS view called "AppView" for the fields of the App entity. The AppView must contain the following fields: - name: AppStoreListingUrl type: STRING - name: Description type: STRING - name: DeveloperCompany type: Company - name: InitialReleaseDate type: DATE - name: IsShopifyOwned type: BOOL - name: Name type: STRING The data source for the [DeveloperCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing App entity should be loaded from the relative URL: "/AppService/app/{id}" (HTTP-GET) If a new App entity has been created, the new entity should be posted to the relative URL: "/AppService/app" (HTTP-POST) If an existing App entity has been updated, the modified entity should be sent to the relative URL: "/AppService/app/{id}" (HTTP-PUT) If an existing App entity has to be deleted, the following relative URL should be called: "/AppService/app/{id}" (HTTP-DELETE) Add a HTML table to the view with the following AppCategoryAssignment columns: - column: App - column: AppCategory The table should have the title "AppCategoryAssignments" und the data must be loaded from the server with the following relative URL: "/AppService/appcategoryassignment/app/{id}" Add a HTML table to the view with the following MerchantAppInstallation columns: - column: App - column: Merchant - column: InstallDate - column: UninstallDate - column: MonthlyRevenueShareUsd The table should have the title "MerchantAppInstallations" und the data must be loaded from the server with the following relative URL: "/AppService/merchantappinstallation/app/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint