22 lines
351 B
JavaScript
22 lines
351 B
JavaScript
export const BoardType = {
|
|
project: 'project',
|
|
group: 'group',
|
|
};
|
|
|
|
export const ListType = {
|
|
assignee: 'assignee',
|
|
milestone: 'milestone',
|
|
backlog: 'backlog',
|
|
closed: 'closed',
|
|
label: 'label',
|
|
};
|
|
|
|
export const inactiveId = 0;
|
|
|
|
export const ISSUABLE = 'issuable';
|
|
export const LIST = 'list';
|
|
|
|
export default {
|
|
BoardType,
|
|
ListType,
|
|
};
|