mirror of
https://github.com/aykhans/slash-e.git
synced 2025-07-07 13:42:34 +00:00
feat: add title field to workspace
This commit is contained in:
3
web/src/types/modules/workspace.d.ts
vendored
3
web/src/types/modules/workspace.d.ts
vendored
@ -9,6 +9,7 @@ interface Workspace {
|
||||
rowStatus: RowStatus;
|
||||
|
||||
name: string;
|
||||
title: string;
|
||||
description: string;
|
||||
|
||||
workspaceUserList: WorkspaceUser[];
|
||||
@ -16,6 +17,7 @@ interface Workspace {
|
||||
|
||||
interface WorkspaceCreate {
|
||||
name: string;
|
||||
title: string;
|
||||
description: string;
|
||||
}
|
||||
|
||||
@ -23,6 +25,7 @@ interface WorkspacePatch {
|
||||
id: WorkspaceId;
|
||||
rowStatus?: RowStatus;
|
||||
name?: string;
|
||||
title?: string;
|
||||
description?: string;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user