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

14 lines
241 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-04-13 17:21:07 +00:00
module BlobViewer
module Rich
extend ActiveSupport::Concern
included do
self.type = :rich
self.switcher_icon = 'file-text-o'
self.switcher_title = 'rendered file'
end
end
end