Add Tag Edit Modal and UI

This commit is contained in:
Gregor Vostrak
2026-02-10 13:19:30 +01:00
parent 215957104f
commit 2c4af95ee3
7 changed files with 158 additions and 6 deletions

View File

@@ -101,6 +101,10 @@ export function canCreateTags() {
return currentUserHasPermission('tags:create');
}
export function canUpdateTags() {
return currentUserHasPermission('tags:update');
}
export function canDeleteTags() {
return currentUserHasPermission('tags:delete');
}