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