summaryrefslogtreecommitdiff
path: root/app/graphql/types/tree/tree_entry_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/tree/tree_entry_type.rb')
-rw-r--r--app/graphql/types/tree/tree_entry_type.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/graphql/types/tree/tree_entry_type.rb b/app/graphql/types/tree/tree_entry_type.rb
index d5cfb898aea..23ec2ef0ec2 100644
--- a/app/graphql/types/tree/tree_entry_type.rb
+++ b/app/graphql/types/tree/tree_entry_type.rb
@@ -4,8 +4,12 @@ module Types
class TreeEntryType < BaseObject
implements Types::Tree::EntryType
+ present_using TreeEntryPresenter
+
graphql_name 'TreeEntry'
description 'Represents a directory'
+
+ field :web_url, GraphQL::STRING_TYPE, null: true
end
end
end