Overview
Summary
Contact
Donate
Imprint
Prompt for the
PlatformView
Please create a React-JS view called "PlatformView" for the fields of the Platform entity. The PlatformView must contain the following fields: - name: Name type: STRING - name: ReleaseDate type: DATE - name: Type type: STRING - name: Vendor type: STRING An existing Platform entity should be loaded from the relative URL: "/SupportVendorService/platform/{id}" (HTTP-GET) If a new Platform entity has been created, the new entity should be posted to the relative URL: "/SupportVendorService/platform" (HTTP-POST) If an existing Platform entity has been updated, the modified entity should be sent to the relative URL: "/SupportVendorService/platform/{id}" (HTTP-PUT) If an existing Platform entity has to be deleted, the following relative URL should be called: "/SupportVendorService/platform/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PartnerIntegration columns: - column: EndDate - column: PartnerName - column: Company - column: Platform - column: StartDate - column: Description The table should have the title "PartnerIntegrations" und the data must be loaded from the server with the following relative URL: "/CompanyService/partnerintegration/platform/{id}" Add a HTML table to the view with the following Application columns: - column: ProgrammingLanguage - column: License - column: Type - column: Platform - column: Website - column: Company - column: Name - column: ReleaseDate The table should have the title "Applications" und the data must be loaded from the server with the following relative URL: "/CompanyService/application/platform/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint