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