summaryrefslogtreecommitdiff
path: root/app/graphql/types/tree/submodule_type.rb
blob: 8cb1e04f5ba03c5cacfd4b26778935177c194ba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true
module Types
  module Tree
    # rubocop: disable Graphql/AuthorizeTypes
    # This is presented through `Repository` that has its own authorization
    class SubmoduleType < BaseObject
      implements Types::Tree::EntryType

      graphql_name 'Submodule'
    end
    # rubocop: enable Graphql/AuthorizeTypes
  end
end