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