-
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] endpoint_route_handler: acl warning
Empty group_id in acl is deprecated. see odoo/odoo@ce1a4a2
- Loading branch information
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink | ||
access_endpoint_route_handler_tool_mngr_edit,endpoint_route_handler mngr edit,model_endpoint_route_handler,base.group_system,1,1,1,1 | ||
access_endpoint_route_handler_tool_edit,endpoint_route_handler edit,model_endpoint_route_handler,,1,0,0,0 | ||
access_endpoint_route_handler_tool_edit_public,endpoint_route_handler edit,model_endpoint_route_handler,base.group_public,1,0,0,0 | ||
access_endpoint_route_handler_tool_edit_portal,endpoint_route_handler edit,model_endpoint_route_handler,base.group_portal,1,0,0,0 | ||
access_endpoint_route_handler_tool_edit_employee,endpoint_route_handler edit,model_endpoint_route_handler,base.group_user,1,0,0,0 | ||
access_endpoint_route_handler_mngr_edit,endpoint_route_handler_tool mngr edit,model_endpoint_route_handler_tool,base.group_system,1,1,1,1 | ||
access_endpoint_route_handler_edit,endpoint_route_handler_tool edit,model_endpoint_route_handler_tool,,1,0,0,0 | ||
access_endpoint_route_handler_edit_public,endpoint_route_handler_tool edit,model_endpoint_route_handler_tool,base.group_public,1,0,0,0 | ||
access_endpoint_route_handler_edit_portal,endpoint_route_handler_tool edit,model_endpoint_route_handler_tool,base.group_portal,1,0,0,0 | ||
access_endpoint_route_handler_edit_employee,endpoint_route_handler_tool edit,model_endpoint_route_handler_tool,base.group_user,1,0,0,0 |