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

22 lines
652 B
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 = {
private: {
label: __('Private'),
description: __('The snippet is visible only to me.'),
description_project: __('The snippet is visible only to project members.'),
},
internal: {
label: __('Internal'),
description: __('The snippet is visible to any logged in user.'),
},
public: {
label: __('Public'),
description: __('The snippet can be accessed without any authentication.'),
},
};