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