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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-07-07 15:09:16 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-07-07 15:09:16 +0300
commit0254867cf0f3341fd63cc6da07290f1da91f99ef (patch)
tree4b3fb556c1cb8cde3459e56d58d5e61eb268d9ec /app/presenters/tree_entry_presenter.rb
parentc417764f00abaa5d2224a50b8d43a15e40ef8790 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/presenters/tree_entry_presenter.rb')
-rw-r--r--app/presenters/tree_entry_presenter.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/presenters/tree_entry_presenter.rb b/app/presenters/tree_entry_presenter.rb
index 7bb10cd1455..216b3b0d4c9 100644
--- a/app/presenters/tree_entry_presenter.rb
+++ b/app/presenters/tree_entry_presenter.rb
@@ -6,4 +6,8 @@ class TreeEntryPresenter < Gitlab::View::Presenter::Delegated
def web_url
Gitlab::Routing.url_helpers.project_tree_url(tree.repository.project, File.join(tree.commit_id, tree.path))
end
+
+ def web_path
+ Gitlab::Routing.url_helpers.project_tree_path(tree.repository.project, File.join(tree.commit_id, tree.path))
+ end
end