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