Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserRoleView
Please create a React-JS view called "UserRoleView" for the fields of the UserRole entity. The UserRoleView must contain the following fields: - name: CreatedAt type: DATE - name: PlatformUser type: PlatformUser - name: RoleType type: STRING The data source for the [PlatformUser] select control should be loaded from the relative URL: "/PlatformUserService/platformuser" (HTTP-GET) An existing UserRole entity should be loaded from the relative URL: "/PlatformUserService/userrole/{id}" (HTTP-GET) If a new UserRole entity has been created, the new entity should be posted to the relative URL: "/PlatformUserService/userrole" (HTTP-POST) If an existing UserRole entity has been updated, the modified entity should be sent to the relative URL: "/PlatformUserService/userrole/{id}" (HTTP-PUT) If an existing UserRole entity has to be deleted, the following relative URL should be called: "/PlatformUserService/userrole/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint