Overview
Summary
Contact
Donate
Imprint
Prompt for the
CommunityMembershipView
Please create a React-JS view called "CommunityMembershipView" for the fields of the CommunityMembership entity. The CommunityMembershipView must contain the following fields: - name: Community type: Community - name: JoinedAt type: STRING - name: LeftAt type: STRING - name: Role 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) The data source for the [Community] select control should be loaded from the relative URL: "/UserAccountService/community" (HTTP-GET) An existing CommunityMembership entity should be loaded from the relative URL: "/ListService/communitymembership/{id}" (HTTP-GET) If a new CommunityMembership entity has been created, the new entity should be posted to the relative URL: "/ListService/communitymembership" (HTTP-POST) If an existing CommunityMembership entity has been updated, the modified entity should be sent to the relative URL: "/ListService/communitymembership/{id}" (HTTP-PUT) If an existing CommunityMembership entity has to be deleted, the following relative URL should be called: "/ListService/communitymembership/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint