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