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