feat(HAI-001): make title optional and description required in TaskCreateInput
This commit is contained in:
@@ -17,8 +17,8 @@ export interface TaskDetail extends Task {
|
||||
}
|
||||
|
||||
export interface TaskCreateInput {
|
||||
title: string;
|
||||
description?: string;
|
||||
title?: string;
|
||||
description: string;
|
||||
column?: Column;
|
||||
dependencies?: string[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user