mirror of
https://github.com/aykhans/slash-e.git
synced 2026-04-21 22:10:02 +00:00
feat: add title field to workspace
This commit is contained in:
Vendored
+3
@@ -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