summaryrefslogtreecommitdiff
path: root/app/graphql/types/snippets/blob_viewer_type.rb
blob: 8b73234bbd907612ef9ff68524da40db1367a0d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Types
  module Snippets
    # Kept to avoid changing the type of existing fields. New fields should use
    # ::Types::BlobViewerType directly
    class BlobViewerType < ::Types::BlobViewerType # rubocop:disable Graphql/AuthorizeTypes
      graphql_name 'SnippetBlobViewer'
    end
  end
end