Overview
Summary
Contact
Donate
Imprint
Prompt for the
ArchiveItemView
Please create a React-JS view called "ArchiveItemView" for the fields of the ArchiveItem entity. The ArchiveItemView must contain the following fields: - name: ArchivedAt type: DATE - name: ItemType type: STRING - name: Post type: Post - name: Reel type: Reel - name: Story type: Story - name: UserAccount type: UserAccount The data source for the [Post] select control should be loaded from the relative URL: "/UserAccountService/post" (HTTP-GET) The data source for the [Reel] select control should be loaded from the relative URL: "/ReelService/reel" (HTTP-GET) The data source for the [Story] select control should be loaded from the relative URL: "/StoryService/story" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing ArchiveItem entity should be loaded from the relative URL: "/StoryService/archiveitem/{id}" (HTTP-GET) If a new ArchiveItem entity has been created, the new entity should be posted to the relative URL: "/StoryService/archiveitem" (HTTP-POST) If an existing ArchiveItem entity has been updated, the modified entity should be sent to the relative URL: "/StoryService/archiveitem/{id}" (HTTP-PUT) If an existing ArchiveItem entity has to be deleted, the following relative URL should be called: "/StoryService/archiveitem/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint