feat(server): add workspace name and avatarKey to database (#10513)

close CLOUD-153
This commit is contained in:
fengmk2
2025-03-06 15:25:05 +00:00
parent c76b2504fe
commit 81694a1144
8 changed files with 90 additions and 15 deletions

View File

@@ -16,7 +16,7 @@ declare global {
export type { Workspace };
export type UpdateWorkspaceInput = Pick<
Partial<Workspace>,
'public' | 'enableAi' | 'enableUrlPreview'
'public' | 'enableAi' | 'enableUrlPreview' | 'name' | 'avatarKey'
>;
@Injectable()