Skip to content

Commit

Permalink
タスクに識別子を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
ilovegadd committed Sep 1, 2023
1 parent 41f55b5 commit 5770685
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
### Added

- 単価オファーにサブオファーを追加
- タスクに識別子を追加

### Changed

Expand Down
5 changes: 5 additions & 0 deletions src/task.ts
Expand Up @@ -22,6 +22,11 @@ export interface IExecutor {
*/
export type ITask = IExtendId<IAttributes>;
export interface IAttributes {
/**
* タスク識別子
* 冗長なタスク作成を回避するために使用(2023-09-01~)
*/
identifier?: string;
project: Pick<IProject, 'id' | 'typeOf'>;
/**
* タスク名
Expand Down

0 comments on commit 5770685

Please sign in to comment.