Overview
Summary
Contact
Donate
Imprint
Prompt for the
WatchHistoryView
Please create a React-JS view called "WatchHistoryView" for the fields of the WatchHistory entity. The WatchHistoryView must contain the following fields: - name: CompletedAt type: STRING - name: Episode type: Episode - name: LastPositionSeconds type: LONG - name: Profile type: Profile - name: ProgressPercent type: STRING - name: Season type: Season - name: StartedAt type: STRING - name: Title type: Title The data source for the [Episode] select control should be loaded from the relative URL: "/EpisodeService/episode" (HTTP-GET) The data source for the [Title] select control should be loaded from the relative URL: "/TitleService/title" (HTTP-GET) The data source for the [Season] select control should be loaded from the relative URL: "/SeasonService/season" (HTTP-GET) The data source for the [Profile] select control should be loaded from the relative URL: "/ProfileService/profile" (HTTP-GET) An existing WatchHistory entity should be loaded from the relative URL: "/ProfileService/watchhistory/{id}" (HTTP-GET) If a new WatchHistory entity has been created, the new entity should be posted to the relative URL: "/ProfileService/watchhistory" (HTTP-POST) If an existing WatchHistory entity has been updated, the modified entity should be sent to the relative URL: "/ProfileService/watchhistory/{id}" (HTTP-PUT) If an existing WatchHistory entity has to be deleted, the following relative URL should be called: "/ProfileService/watchhistory/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint