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