forked from github/plane
10 lines
175 B
TypeScript
10 lines
175 B
TypeScript
|
export const STATUS: { [key: string]: number } = {
|
||
|
Pending: -2,
|
||
|
Declined: -1,
|
||
|
Snoozed: 0,
|
||
|
Accepted: 1,
|
||
|
Duplicate: 2,
|
||
|
};
|
||
|
|
||
|
export const INBOX_ISSUE_SOURCE = "in-app";
|