summaryrefslogtreecommitdiff
path: root/app/models/blob_viewer/simple.rb
blob: 454a20495fc361fa100dc781596e7c7e7bcd655a (plain)
1
2
3
4
5
6
7
8
9
10
11
module BlobViewer
  module Simple
    extend ActiveSupport::Concern

    included do
      self.type = :simple
      self.switcher_icon = 'code'
      self.switcher_title = 'source'
    end
  end
end