Repository URL to install this package:
|
Version:
3.12.18 ▾
|
import { LABEL_PERMISSION_IDS } from '@filerobot/utils/lib/constants';
export var DEFAULT_COLORS = ['#F2A43B', '#F4B9E7', '#E55E58', '#6DDC6A', '#9580E9', '#8AB7FF'];
export var defaultState = {
name: '',
color: DEFAULT_COLORS[0],
shape: 'pin',
is_pinned: false,
// TODO Rename is_pinned -> isPinned
permissions: {
viewing: {
scope: LABEL_PERMISSION_IDS.COMPANY,
ids: null // [later, the list of selected teams/users]
},
attaching: {
scope: LABEL_PERMISSION_IDS.COMPANY,
ids: null // [later, the list of selected teams/users]
}
}
};