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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/tree.rb')
-rw-r--r--app/models/tree.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/tree.rb b/app/models/tree.rb
index 4d62334800d..030e7d9e85f 100644
--- a/app/models/tree.rb
+++ b/app/models/tree.rb
@@ -13,10 +13,10 @@ class Tree
@repository = repository
@sha = sha
@path = path
- @ref_type = ExtractsRef.ref_type(ref_type)
+ @ref_type = ExtractsRef::RefExtractor.ref_type(ref_type)
git_repo = @repository.raw_repository
- ref = ExtractsRef.qualify_ref(@sha, ref_type)
+ ref = ExtractsRef::RefExtractor.qualify_ref(@sha, ref_type)
@entries, @cursor = Gitlab::Git::Tree.where(git_repo, ref, @path, recursive, skip_flat_paths, rescue_not_found,
pagination_params)