fix: include kanban bucket move permission in tasks preset

The kanban task move endpoint (POST /projects/:project/views/:view/
buckets/:bucket/tasks) is registered under the projects group as
views_buckets_tasks. Without this permission, the tasks preset cannot
move tasks between kanban buckets.

https://claude.ai/code/session_01QDWqXJmjriYoAcvMD43vmx
This commit is contained in:
Claude 2026-03-22 14:16:45 +00:00 committed by kolaente
parent 652eb9bba3
commit 0085772b63
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ const presets: TokenPreset[] = [
'tasks_comments': '*',
'tasks_relations': '*',
'labels': ['read_one', 'read_all', 'create'],
'projects': ['read_one', 'read_all'],
'projects': ['read_one', 'read_all', 'views_buckets_tasks'],
'projects_views': ['read_one', 'read_all'],
'projects_views_tasks': ['read_one', 'read_all'],
},