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