Overview
Summary
Contact
Donate
Imprint
Prompt for the
TestFlightView
Please create a React-JS view called "TestFlightView" for the fields of the TestFlight entity. The TestFlightView must contain the following fields: - name: Description type: STRING - name: LaunchVehicle type: LaunchVehicle - name: Mission type: Mission - name: Notes type: STRING - name: RocketStage type: RocketStage - name: Spacecraft type: Spacecraft - name: TestSite type: TestSite - name: TestType type: STRING The data source for the [TestSite] select control should be loaded from the relative URL: "/LaunchVehicleService/testsite" (HTTP-GET) The data source for the [RocketStage] select control should be loaded from the relative URL: "/LaunchVehicleService/rocketstage" (HTTP-GET) The data source for the [Spacecraft] select control should be loaded from the relative URL: "/MissionService/spacecraft" (HTTP-GET) The data source for the [Mission] select control should be loaded from the relative URL: "/MissionService/mission" (HTTP-GET) The data source for the [LaunchVehicle] select control should be loaded from the relative URL: "/LaunchVehicleService/launchvehicle" (HTTP-GET) An existing TestFlight entity should be loaded from the relative URL: "/LaunchVehicleService/testflight/{id}" (HTTP-GET) If a new TestFlight entity has been created, the new entity should be posted to the relative URL: "/LaunchVehicleService/testflight" (HTTP-POST) If an existing TestFlight entity has been updated, the modified entity should be sent to the relative URL: "/LaunchVehicleService/testflight/{id}" (HTTP-PUT) If an existing TestFlight entity has to be deleted, the following relative URL should be called: "/LaunchVehicleService/testflight/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint