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

12 lines
200 B
Ruby

module BlobViewer
module Simple
extend ActiveSupport::Concern
included do
self.type = :simple
self.switcher_icon = 'code'
self.switcher_title = 'source'
end
end
end