Merge branch 'add-commit-signatures-feature-flag' into 'master'

Add GetCommitSignatures feature flag

See merge request gitlab-org/gitlab-ce!29288
This commit is contained in:
Felipe Artur 2019-07-03 17:57:14 +00:00
commit db26cddaaa
1 changed files with 6 additions and 1 deletions

View File

@ -8,7 +8,12 @@ class Feature
# CATFILE_CACHE sets an incorrect example
CATFILE_CACHE = 'catfile-cache'.freeze
SERVER_FEATURE_FLAGS = [CATFILE_CACHE].freeze
SERVER_FEATURE_FLAGS =
[
CATFILE_CACHE,
'get_commit_signatures'.freeze
].freeze
DEFAULT_ON_FLAGS = Set.new([CATFILE_CACHE]).freeze
class << self