feat: allow delete:list as default

This commit is contained in:
Henry
2026-01-30 14:55:21 +00:00
parent fc41d17bcb
commit 247aa54a5c
2 changed files with 2 additions and 1 deletions

View File

@@ -127,7 +127,7 @@ CROSS JOIN (
VALUES
('workspace:view'),
('board:view'), ('board:create'),
('list:view'), ('list:create'), ('list:edit'),
('list:view'), ('list:create'), ('list:edit'), ('list:delete'),
('card:view'), ('card:create'), ('card:edit'), ('card:delete'),
('comment:view'), ('comment:create'), ('comment:edit'), ('comment:delete'),
('member:view')

View File

@@ -64,6 +64,7 @@ export const defaultRolePermissions: Record<Role, readonly Permission[]> = {
"list:view",
"list:create",
"list:edit",
"list:delete",
"card:view",
"card:create",
"card:edit",