Welcome to mirror list, hosted at ThFree Co, Russian Federation.

open_api.rb « blob_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d9c5bea8dc5d7697abc2427874e2449bf26b522 (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