gitlab-org--gitlab-foss/app/models/blob_viewer/simple.rb
2017-04-27 12:23:26 -05:00

11 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