debian-mirror-gitlab/app/assets/javascripts/snippets/constants.js

48 lines
1.6 KiB
JavaScript
Raw Normal View History

2020-04-08 14:13:33 +05:30
import { __ } from '~/locale';
2020-03-13 15:44:24 +05:30
export const SNIPPET_VISIBILITY_PRIVATE = 'private';
export const SNIPPET_VISIBILITY_INTERNAL = 'internal';
export const SNIPPET_VISIBILITY_PUBLIC = 'public';
2020-04-08 14:13:33 +05:30
export const SNIPPET_VISIBILITY = {
2020-04-22 19:07:51 +05:30
[SNIPPET_VISIBILITY_PRIVATE]: {
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.'),
},
2020-04-22 19:07:51 +05:30
[SNIPPET_VISIBILITY_INTERNAL]: {
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
},
2020-04-22 19:07:51 +05:30
[SNIPPET_VISIBILITY_PUBLIC]: {
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_MAP = {
0: SNIPPET_VISIBILITY_PRIVATE,
10: SNIPPET_VISIBILITY_INTERNAL,
20: SNIPPET_VISIBILITY_PUBLIC,
};
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.',
);