Overview
Summary
Contact
Donate
Imprint
Prompt for the
PlaylistItemView
Please create a React-JS view called "PlaylistItemView" for the fields of the PlaylistItem entity. The PlaylistItemView must contain the following fields: - name: AddedAt type: DATE - name: AddedByUser type: LONG - name: Playlist type: Playlist - name: PodcastEpisode type: PodcastEpisode - name: SortOrder type: LONG - name: Track type: Track The data source for the [Playlist] select control should be loaded from the relative URL: "/PlaylistService/playlist" (HTTP-GET) The data source for the [Track] select control should be loaded from the relative URL: "/TrackService/track" (HTTP-GET) The data source for the [PodcastEpisode] select control should be loaded from the relative URL: "/TrackService/podcastepisode" (HTTP-GET) An existing PlaylistItem entity should be loaded from the relative URL: "/PlaylistService/playlistitem/{id}" (HTTP-GET) If a new PlaylistItem entity has been created, the new entity should be posted to the relative URL: "/PlaylistService/playlistitem" (HTTP-POST) If an existing PlaylistItem entity has been updated, the modified entity should be sent to the relative URL: "/PlaylistService/playlistitem/{id}" (HTTP-PUT) If an existing PlaylistItem entity has to be deleted, the following relative URL should be called: "/PlaylistService/playlistitem/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint