Skip to content

Commit

Permalink
feat: added memo type for issue types enum and default globals
Browse files Browse the repository at this point in the history
  • Loading branch information
GloireMutaliko21 committed Feb 8, 2025
1 parent 28011f1 commit 1288df3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/contracts/src/lib/issue-type.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ export enum TaskTypeEnum {
EPIC = 'epic',
STORY = 'story',
TASK = 'task',
BUG = 'bug'
BUG = 'bug',
MEMO = 'memo'
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@ export const DEFAULT_GLOBAL_ISSUE_TYPES: IIssueType[] = [
isSystem: true,
isDefault: false
},
{
name: 'Memo',
value: TaskTypeEnum.MEMO,
description:
'Memos are short notes used to document ideas, discussions, or important details within a project.',
icon: 'task-issue-types/category.svg',
color: '#8154BA',
isSystem: true,
isDefault: true
},
{
name: 'Epic',
value: TaskTypeEnum.EPIC,
Expand Down

0 comments on commit 1288df3

Please sign in to comment.