diff options
author | Douwe Maan <douwe@gitlab.com> | 2019-05-01 11:52:57 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2019-05-01 11:52:57 +0000 |
commit | e6767f59220dba7e450e06106c041dd90f4d7105 (patch) | |
tree | c6d030c1c919f559d7e8e87fc5af9e23b21a4d87 | |
parent | e0074780d6d90fee986e3cc722599f1804ade07f (diff) | |
parent | 55457b2c163df552ddc333a91f9f34d4b753601b (diff) | |
download | gitlab-ce-e6767f59220dba7e450e06106c041dd90f4d7105.tar.gz |
Merge branch 'bvl-upload-designs-fix-ce' into 'master'
Make Gitlab::GlRepository#types an instance method
See merge request gitlab-org/gitlab-ce!27902
-rw-r--r-- | lib/gitlab/gl_repository.rb | 12 | ||||
-rw-r--r-- | lib/gitlab/gl_repository/repo_type.rb | 2 |
2 files changed, 11 insertions, 3 deletions
diff --git a/lib/gitlab/gl_repository.rb b/lib/gitlab/gl_repository.rb index a56ca1e39e7..04dabe423e8 100644 --- a/lib/gitlab/gl_repository.rb +++ b/lib/gitlab/gl_repository.rb @@ -1,7 +1,9 @@ # frozen_string_literal: true module Gitlab - module GlRepository + class GlRepository + include Singleton + PROJECT = RepoType.new( name: :project, access_checker_class: Gitlab::GitAccess, @@ -19,7 +21,7 @@ module Gitlab }.freeze def self.types - TYPES + instance.types end def self.parse(gl_repository) @@ -39,5 +41,11 @@ module Gitlab def self.default_type PROJECT end + + def types + TYPES + end + + private_class_method :instance end end diff --git a/lib/gitlab/gl_repository/repo_type.rb b/lib/gitlab/gl_repository/repo_type.rb index 7abe6c29a25..19915980d7f 100644 --- a/lib/gitlab/gl_repository/repo_type.rb +++ b/lib/gitlab/gl_repository/repo_type.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true module Gitlab - module GlRepository + class GlRepository class RepoType attr_reader :name, :access_checker_class, |