Overview
Summary
Contact
Donate
Imprint
Prompt for the
NitroSubscriptionView
Please create a React-JS view called "NitroSubscriptionView" for the fields of the NitroSubscription entity. The NitroSubscriptionView must contain the following fields: - name: AutoRenews type: BOOL - name: EndedAt type: DATE - name: StartedAt type: DATE - name: SubscriptionPlan type: SubscriptionPlan - name: User type: UserAccount The data source for the [SubscriptionPlan] select control should be loaded from the relative URL: "/SubscriptionPlanService/subscriptionplan" (HTTP-GET) The data source for the [User] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing NitroSubscription entity should be loaded from the relative URL: "/UserAccountService/nitrosubscription/{id}" (HTTP-GET) If a new NitroSubscription entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/nitrosubscription" (HTTP-POST) If an existing NitroSubscription entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/nitrosubscription/{id}" (HTTP-PUT) If an existing NitroSubscription entity has to be deleted, the following relative URL should be called: "/UserAccountService/nitrosubscription/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint