Overview
Summary
Contact
Donate
Imprint
Prompt for the
StoryMediaView
Please create a React-JS view called "StoryMediaView" for the fields of the StoryMedia entity. The StoryMediaView must contain the following fields: - name: CreatedAt type: DATE - name: DurationSeconds type: LONG - name: FilterName type: STRING - name: MediaOrder type: LONG - name: MediaType type: STRING - name: Story type: Story - name: ThumbnailUrl type: STRING - name: Url type: STRING The data source for the [Story] select control should be loaded from the relative URL: "/StoryService/story" (HTTP-GET) An existing StoryMedia entity should be loaded from the relative URL: "/StoryService/storymedia/{id}" (HTTP-GET) If a new StoryMedia entity has been created, the new entity should be posted to the relative URL: "/StoryService/storymedia" (HTTP-POST) If an existing StoryMedia entity has been updated, the modified entity should be sent to the relative URL: "/StoryService/storymedia/{id}" (HTTP-PUT) If an existing StoryMedia entity has to be deleted, the following relative URL should be called: "/StoryService/storymedia/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint