Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « featurable « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23f1c5e415d9eeff2d394e71203a5050bc46603b (plain)
1
2
3
4
5
6
// Matches `app/models/concerns/featurable.rb`

export const FEATURABLE_DISABLED = 'disabled';
export const FEATURABLE_PRIVATE = 'private';
export const FEATURABLE_ENABLED = 'enabled';
export const FEATURABLE_PUBLIC = 'public';