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