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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
231 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-04-13 17:04:29 +00:00
module BlobViewer
module Simple
extend ActiveSupport::Concern
included do
self.type = :simple
self.switcher_icon = 'code'
self.switcher_title = 'source'
end
end
end