Overview
Summary
Contact
Donate
Imprint
Prompt for the
ChannelMemberView
Please create a React-JS view called "ChannelMemberView" for the fields of the ChannelMember entity. The ChannelMemberView must contain the following fields: - name: Channel type: Channel - name: CreatedAt type: DATE - name: Role type: STRING - name: User type: User The data source for the [User] select control should be loaded from the relative URL: "/UserService/user" (HTTP-GET) The data source for the [Channel] select control should be loaded from the relative URL: "/ChannelService/channel" (HTTP-GET) An existing ChannelMember entity should be loaded from the relative URL: "/UserService/channelmember/{id}" (HTTP-GET) If a new ChannelMember entity has been created, the new entity should be posted to the relative URL: "/UserService/channelmember" (HTTP-POST) If an existing ChannelMember entity has been updated, the modified entity should be sent to the relative URL: "/UserService/channelmember/{id}" (HTTP-PUT) If an existing ChannelMember entity has to be deleted, the following relative URL should be called: "/UserService/channelmember/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint