feat: give workspace owners global space management permission

This commit is contained in:
Philipinho
2025-09-19 22:00:09 +01:00
parent 3c4cab0d2a
commit 3b4a02e94a
9 changed files with 130 additions and 14 deletions
@@ -1,4 +1,5 @@
import {
IsBoolean,
IsNumber,
IsOptional,
IsPositive,
@@ -23,4 +24,9 @@ export class PaginationOptions {
@IsOptional()
@IsString()
query: string;
//for space endpoint workspace owners
@IsOptional()
@IsBoolean()
includeAllSpaces?: boolean;
}