Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserMuteView
Please create a React-JS view called "UserMuteView" for the fields of the UserMute entity. The UserMuteView must contain the following fields: - name: CreatedAt type: STRING - name: MutedUser type: UserAccount - name: User type: UserAccount The data source for the [MutedUser] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [User] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing UserMute entity should be loaded from the relative URL: "/CampaignService/usermute/{id}" (HTTP-GET) If a new UserMute entity has been created, the new entity should be posted to the relative URL: "/CampaignService/usermute" (HTTP-POST) If an existing UserMute entity has been updated, the modified entity should be sent to the relative URL: "/CampaignService/usermute/{id}" (HTTP-PUT) If an existing UserMute entity has to be deleted, the following relative URL should be called: "/CampaignService/usermute/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint