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