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