summaryrefslogtreecommitdiff
path: root/lib/gitlab/gl_repository/repo_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/gl_repository/repo_type.rb')
-rw-r--r--lib/gitlab/gl_repository/repo_type.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/gitlab/gl_repository/repo_type.rb b/lib/gitlab/gl_repository/repo_type.rb
index 01bc27f963b..6918344aa40 100644
--- a/lib/gitlab/gl_repository/repo_type.rb
+++ b/lib/gitlab/gl_repository/repo_type.rb
@@ -13,8 +13,8 @@ module Gitlab
@repository_accessor = repository_accessor
end
- def identifier_for_subject(subject)
- "#{name}-#{subject.id}"
+ def identifier_for_repositorable(repositorable)
+ "#{name}-#{repositorable.id}"
end
def fetch_id(identifier)
@@ -34,8 +34,8 @@ module Gitlab
project? ? "" : ".#{name}"
end
- def repository_for(subject)
- repository_accessor.call(subject)
+ def repository_for(repositorable)
+ repository_accessor.call(repositorable)
end
end
end