Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserProfileView
Please create a React-JS view called "UserProfileView" for the fields of the UserProfile entity. The UserProfileView must contain the following fields: - name: BackgroundImageUrl type: STRING - name: Birthday type: DATE - name: ContactInfoVisibility type: STRING - name: FirstName type: STRING - name: Headline type: STRING - name: Industry type: STRING - name: LastName type: STRING - name: Location type: STRING - name: OpenToRelocate type: BOOL - name: OpenToWork type: BOOL - name: ProfilePictureUrl type: STRING - name: Summary type: STRING - name: User type: UserAccount The data source for the [User] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing UserProfile entity should be loaded from the relative URL: "/GroupService/userprofile/{id}" (HTTP-GET) If a new UserProfile entity has been created, the new entity should be posted to the relative URL: "/GroupService/userprofile" (HTTP-POST) If an existing UserProfile entity has been updated, the modified entity should be sent to the relative URL: "/GroupService/userprofile/{id}" (HTTP-PUT) If an existing UserProfile entity has to be deleted, the following relative URL should be called: "/GroupService/userprofile/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint