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

14 lines
231 B
Ruby

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