Overview
Summary
Contact
Donate
Imprint
Prompt for the
PostTagView
Please create a React-JS view called "PostTagView" for the fields of the PostTag entity. The PostTagView must contain the following fields: - name: CreatedAt type: DATE - name: PositionX type: STRING - name: PositionY type: STRING - name: Post type: Post - name: TaggedUser type: UserAccount The data source for the [TaggedUser] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [Post] select control should be loaded from the relative URL: "/UserAccountService/post" (HTTP-GET) An existing PostTag entity should be loaded from the relative URL: "/SavedCollectionService/posttag/{id}" (HTTP-GET) If a new PostTag entity has been created, the new entity should be posted to the relative URL: "/SavedCollectionService/posttag" (HTTP-POST) If an existing PostTag entity has been updated, the modified entity should be sent to the relative URL: "/SavedCollectionService/posttag/{id}" (HTTP-PUT) If an existing PostTag entity has to be deleted, the following relative URL should be called: "/SavedCollectionService/posttag/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint