summaryrefslogtreecommitdiff
path: root/app/presenters
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2019-06-04 14:38:18 +0100
committerPhil Hughes <me@iamphill.com>2019-06-05 08:46:32 +0100
commit4644a2daf5ec5e86e2b2989f04e99e4f081f6fef (patch)
tree40c9376ce43f2c2b9d964fb67b1c35cfb0077773 /app/presenters
parentdf549eb28c83b27500619ccb14c201a4ff87daa3 (diff)
downloadgitlab-ce-4644a2daf5ec5e86e2b2989f04e99e4f081f6fef.tar.gz
Add web_url to tree entry in GraphQL API
Diffstat (limited to 'app/presenters')
-rw-r--r--app/presenters/blob_presenter.rb4
-rw-r--r--app/presenters/tree_entry_presenter.rb9
2 files changed, 13 insertions, 0 deletions
diff --git a/app/presenters/blob_presenter.rb b/app/presenters/blob_presenter.rb
index 6323c1b3389..c5675ef3ea3 100644
--- a/app/presenters/blob_presenter.rb
+++ b/app/presenters/blob_presenter.rb
@@ -13,4 +13,8 @@ class BlobPresenter < Gitlab::View::Presenter::Simple
plain: plain
)
end
+
+ def web_url
+ Gitlab::Routing.url_helpers.project_blob_url(blob.repository.project, File.join(blob.commit_id, blob.path))
+ end
end
diff --git a/app/presenters/tree_entry_presenter.rb b/app/presenters/tree_entry_presenter.rb
new file mode 100644
index 00000000000..7bb10cd1455
--- /dev/null
+++ b/app/presenters/tree_entry_presenter.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+class TreeEntryPresenter < Gitlab::View::Presenter::Delegated
+ presents :tree
+
+ def web_url
+ Gitlab::Routing.url_helpers.project_tree_url(tree.repository.project, File.join(tree.commit_id, tree.path))
+ end
+end