2020-04-08 14:13:33 +05:30
|
|
|
import { __ } from '~/locale';
|
2022-10-11 01:57:18 +05:30
|
|
|
import {
|
|
|
|
VISIBILITY_LEVEL_PRIVATE_STRING,
|
|
|
|
VISIBILITY_LEVEL_INTERNAL_STRING,
|
|
|
|
VISIBILITY_LEVEL_PUBLIC_STRING,
|
|
|
|
} from '~/visibility_level/constants';
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
export const SNIPPET_VISIBILITY = {
|
2022-10-11 01:57:18 +05:30
|
|
|
[VISIBILITY_LEVEL_PRIVATE_STRING]: {
|
2020-04-08 14:13:33 +05:30
|
|
|
label: __('Private'),
|
2020-04-22 19:07:51 +05:30
|
|
|
icon: 'lock',
|
2020-04-08 14:13:33 +05:30
|
|
|
description: __('The snippet is visible only to me.'),
|
|
|
|
description_project: __('The snippet is visible only to project members.'),
|
|
|
|
},
|
2022-10-11 01:57:18 +05:30
|
|
|
[VISIBILITY_LEVEL_INTERNAL_STRING]: {
|
2020-04-08 14:13:33 +05:30
|
|
|
label: __('Internal'),
|
2020-04-22 19:07:51 +05:30
|
|
|
icon: 'shield',
|
2021-01-29 00:20:46 +05:30
|
|
|
description: __('The snippet is visible to any logged in user except external users.'),
|
2020-04-08 14:13:33 +05:30
|
|
|
},
|
2022-10-11 01:57:18 +05:30
|
|
|
[VISIBILITY_LEVEL_PUBLIC_STRING]: {
|
2020-04-08 14:13:33 +05:30
|
|
|
label: __('Public'),
|
2020-04-22 19:07:51 +05:30
|
|
|
icon: 'earth',
|
2020-04-08 14:13:33 +05:30
|
|
|
description: __('The snippet can be accessed without any authentication.'),
|
|
|
|
},
|
|
|
|
};
|
2020-06-23 00:09:42 +05:30
|
|
|
|
|
|
|
export const SNIPPET_CREATE_MUTATION_ERROR = __("Can't create snippet: %{err}");
|
|
|
|
export const SNIPPET_UPDATE_MUTATION_ERROR = __("Can't update snippet: %{err}");
|
2020-07-28 23:09:34 +05:30
|
|
|
export const SNIPPET_BLOB_CONTENT_FETCH_ERROR = __("Can't fetch content for the blob: %{err}");
|
|
|
|
|
|
|
|
export const SNIPPET_BLOB_ACTION_CREATE = 'create';
|
|
|
|
export const SNIPPET_BLOB_ACTION_UPDATE = 'update';
|
|
|
|
export const SNIPPET_BLOB_ACTION_MOVE = 'move';
|
2020-10-24 23:57:45 +05:30
|
|
|
export const SNIPPET_BLOB_ACTION_DELETE = 'delete';
|
|
|
|
|
|
|
|
export const SNIPPET_MAX_BLOBS = 10;
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
export const SNIPPET_LEVELS_RESTRICTED = __(
|
|
|
|
'Other visibility settings have been disabled by the administrator.',
|
|
|
|
);
|
|
|
|
export const SNIPPET_LEVELS_DISABLED = __(
|
|
|
|
'Visibility settings have been disabled by the administrator.',
|
|
|
|
);
|