Overview
Summary
Contact
Donate
Imprint
Prompt for the
VideoLikeView
Please create a React-JS view called "VideoLikeView" for the fields of the VideoLike entity. The VideoLikeView must contain the following fields: - name: CreatedAt type: DATE - name: Type type: STRING - name: User type: User - name: Video type: Video The data source for the [User] 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 VideoLike entity should be loaded from the relative URL: "/VideoService/videolike/{id}" (HTTP-GET) If a new VideoLike entity has been created, the new entity should be posted to the relative URL: "/VideoService/videolike" (HTTP-POST) If an existing VideoLike entity has been updated, the modified entity should be sent to the relative URL: "/VideoService/videolike/{id}" (HTTP-PUT) If an existing VideoLike entity has to be deleted, the following relative URL should be called: "/VideoService/videolike/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint