2020-05-07 08:09:46 -04:00
|
|
|
// WARNING: replace this with something
|
|
|
|
// more sensical as per https://gitlab.com/gitlab-org/gitlab/issues/118611
|
|
|
|
export const VALID_DESIGN_FILE_MIMETYPE = {
|
|
|
|
mimetype: 'image/*',
|
|
|
|
regex: /image\/.+/,
|
|
|
|
};
|
|
|
|
|
2020-05-15 02:08:40 -04:00
|
|
|
export const ACTIVE_DISCUSSION_SOURCE_TYPES = {
|
|
|
|
pin: 'pin',
|
|
|
|
discussion: 'discussion',
|
2020-08-31 23:10:22 -04:00
|
|
|
url: 'url',
|
2020-05-15 02:08:40 -04:00
|
|
|
};
|
2020-06-01 05:08:28 -04:00
|
|
|
|
|
|
|
export const DESIGN_DETAIL_LAYOUT_CLASSLIST = ['design-detail-layout', 'overflow-hidden', 'm-0'];
|