gitlab-org--gitlab-foss/app/models/blob_viewer/open_api.rb

14 lines
246 B
Ruby

# 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