diff options
author | Dylan Griffith <dyl.griffith@gmail.com> | 2018-02-06 16:56:04 +1100 |
---|---|---|
committer | Dylan Griffith <dyl.griffith@gmail.com> | 2018-02-07 12:08:48 +1100 |
commit | ffb1fab40395ead740c1c1282cb7b3f518134c3f (patch) | |
tree | f00bdd26712e9aada98ec99f6fbc0705e565a538 /app/models/namespace.rb | |
parent | 4457cf9d178dc9912fd9c16427ad81b389179d00 (diff) | |
download | gitlab-ce-ffb1fab40395ead740c1c1282cb7b3f518134c3f.tar.gz |
Expose GITLAB_FEATURES as CI/CD variable (fixes #40994)40994-expose-features-as-ci-cd-variable
Diffstat (limited to 'app/models/namespace.rb')
-rw-r--r-- | app/models/namespace.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/namespace.rb b/app/models/namespace.rb index d95489ee9f2..db274ea8172 100644 --- a/app/models/namespace.rb +++ b/app/models/namespace.rb @@ -243,6 +243,10 @@ class Namespace < ActiveRecord::Base all_projects.with_storage_feature(:repository).find_each(&:remove_exports) end + def features + [] + end + private def path_or_parent_changed? |