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