Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserAccountView
Please create a React-JS view called "UserAccountView" for the fields of the UserAccount entity. The UserAccountView must contain the following fields: - name: Country type: Country - name: CreatedAt type: DATE - name: Email type: STRING - name: Status type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing UserAccount entity should be loaded from the relative URL: "/UserProfileService/useraccount/{id}" (HTTP-GET) If a new UserAccount entity has been created, the new entity should be posted to the relative URL: "/UserProfileService/useraccount" (HTTP-POST) If an existing UserAccount entity has been updated, the modified entity should be sent to the relative URL: "/UserProfileService/useraccount/{id}" (HTTP-PUT) If an existing UserAccount entity has to be deleted, the following relative URL should be called: "/UserProfileService/useraccount/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Membership columns: - column: StartDate - column: SubscriptionPlan - column: EndDate - column: UserAccount - column: Status The table should have the title "Memberships" und the data must be loaded from the server with the following relative URL: "/SubscriptionPlanService/membership/useraccount/{id}" Add a HTML table to the view with the following UserProfile columns: - column: UserAccount - column: MaturityLevel - column: Name - column: CreatedAt The table should have the title "UserProfiles" und the data must be loaded from the server with the following relative URL: "/UserProfileService/userprofile/useraccount/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint