summaryrefslogtreecommitdiff
path: root/app/models/blob_viewer/open_api.rb
blob: 0551f3bb1e36f2be94dfe92e49aaa4839bd62606 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module BlobViewer
  class OpenApi < Base
    include Rich
    include ClientSide

    self.partial_name = 'openapi'
    self.file_types = %i(openapi)
    self.binary = false
    self.switcher_icon = 'api'
  end
end