Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feat] Memo type for issue types enum #8767

Merged
merged 3 commits into from
Feb 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions apps/api/src/assets/seed/ever-icons/task-issue-types/memo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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/memo.svg',
color: '#8154BA',
isSystem: true,
isDefault: false
},
{
name: 'Epic',
value: TaskTypeEnum.EPIC,
Expand Down
Loading