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: CreatedUtc type: DATE - name: DisplayName type: STRING - name: Email type: STRING - name: IsEmailVerified type: BOOL - name: LastLoginUtc type: DATE - name: PasswordHash type: STRING - name: PreferredLanguage type: STRING - name: TimeZone type: STRING - name: UserRole type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/UserAccountService/country" (HTTP-GET) An existing UserAccount entity should be loaded from the relative URL: "/UserAccountService/useraccount/{id}" (HTTP-GET) If a new UserAccount entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/useraccount" (HTTP-POST) If an existing UserAccount entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/useraccount/{id}" (HTTP-PUT) If an existing UserAccount entity has to be deleted, the following relative URL should be called: "/UserAccountService/useraccount/{id}" (HTTP-DELETE) Add a HTML table to the view with the following AlertRule columns: - column: AlertType - column: UserAccount - column: ThresholdSpeed - column: Name - column: CreatedUtc - column: GeographicalArea - column: Vessel - column: Description - column: Port - column: IsActive The table should have the title "AlertRules" und the data must be loaded from the server with the following relative URL: "/PortService/alertrule/useraccount/{id}" Add a HTML table to the view with the following VesselComment columns: - column: CommentText - column: Vessel - column: CreatedUtc - column: UserAccount The table should have the title "VesselComments" und the data must be loaded from the server with the following relative URL: "/UserAccountService/vesselcomment/useraccount/{id}" Add a HTML table to the view with the following Notification columns: - column: UserAccount - column: AlertEvent - column: Body - column: ErrorMessage - column: SentUtc - column: Channel - column: DeliveryStatus - column: Subject The table should have the title "Notifications" und the data must be loaded from the server with the following relative URL: "/FleetService/notification/useraccount/{id}" Add a HTML table to the view with the following SavedFilter columns: - column: IsDefault - column: FilterJson - column: Description - column: Name - column: CreatedUtc - column: UserAccount The table should have the title "SavedFilters" und the data must be loaded from the server with the following relative URL: "/UserAccountService/savedfilter/useraccount/{id}" Add a HTML table to the view with the following UserDevice columns: - column: LastSeenUtc - column: DeviceToken - column: Platform - column: UserAccount - column: IsActive The table should have the title "UserDevices" und the data must be loaded from the server with the following relative URL: "/PhotoService/userdevice/useraccount/{id}" Add a HTML table to the view with the following ApiClient columns: - column: ClientSecretHash - column: ClientName - column: UserAccount - column: IsActive - column: CreatedUtc - column: ClientKey The table should have the title "ApiClients" und the data must be loaded from the server with the following relative URL: "/ApiClientService/apiclient/useraccount/{id}" Add a HTML table to the view with the following UserSubscription columns: - column: StartUtc - column: SubscriptionPlan - column: UserAccount - column: IsTrial - column: AutoRenew - column: EndUtc The table should have the title "UserSubscriptions" und the data must be loaded from the server with the following relative URL: "/SubscriptionPlanService/usersubscription/useraccount/{id}" Add a HTML table to the view with the following Fleet columns: - column: IsShared - column: CreatedUtc - column: OwnerUser - column: Name - column: Description The table should have the title "Fleets" und the data must be loaded from the server with the following relative URL: "/FleetService/fleet/owneruser/{id}" Add a HTML table to the view with the following Photo columns: - column: IsApproved - column: Description - column: Vessel - column: PhotographerName - column: TakenUtc - column: Title - column: Source - column: Url - column: UserAccount - column: UploadedUtc The table should have the title "Photos" und the data must be loaded from the server with the following relative URL: "/PhotoService/photo/useraccount/{id}" Add a HTML table to the view with the following PhotoRating columns: - column: Photo - column: UserAccount - column: RatingValue - column: RatedUtc The table should have the title "PhotoRatings" und the data must be loaded from the server with the following relative URL: "/PhotoService/photorating/useraccount/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint