Overview
Summary
Contact
Donate
Imprint
Prompt for the
PlaylistVideoView
Please create a React-JS view called "PlaylistVideoView" for the fields of the PlaylistVideo entity. The PlaylistVideoView must contain the following fields: - name: AddedAt type: DATE - name: AddedByUser type: User - name: Playlist type: Playlist - name: Position type: LONG - name: Video type: Video The data source for the [Playlist] select control should be loaded from the relative URL: "/PlaylistService/playlist" (HTTP-GET) The data source for the [AddedByUser] select control should be loaded from the relative URL: "/UserService/user" (HTTP-GET) The data source for the [Video] select control should be loaded from the relative URL: "/VideoService/video" (HTTP-GET) An existing PlaylistVideo entity should be loaded from the relative URL: "/PlaylistService/playlistvideo/{id}" (HTTP-GET) If a new PlaylistVideo entity has been created, the new entity should be posted to the relative URL: "/PlaylistService/playlistvideo" (HTTP-POST) If an existing PlaylistVideo entity has been updated, the modified entity should be sent to the relative URL: "/PlaylistService/playlistvideo/{id}" (HTTP-PUT) If an existing PlaylistVideo entity has to be deleted, the following relative URL should be called: "/PlaylistService/playlistvideo/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint