Overview
Summary
Contact
Donate
Imprint
Prompt for the
RolePermissionView
Please create a React-JS view called "RolePermissionView" for the fields of the RolePermission entity. The RolePermissionView must contain the following fields: - name: IsAllowed type: BOOL - name: Permission type: Permission - name: Role type: Role The data source for the [Role] select control should be loaded from the relative URL: "/RoleService/role" (HTTP-GET) The data source for the [Permission] select control should be loaded from the relative URL: "/RoleService/permission" (HTTP-GET) An existing RolePermission entity should be loaded from the relative URL: "/RoleService/rolepermission/{id}" (HTTP-GET) If a new RolePermission entity has been created, the new entity should be posted to the relative URL: "/RoleService/rolepermission" (HTTP-POST) If an existing RolePermission entity has been updated, the modified entity should be sent to the relative URL: "/RoleService/rolepermission/{id}" (HTTP-PUT) If an existing RolePermission entity has to be deleted, the following relative URL should be called: "/RoleService/rolepermission/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint