Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rich.rb « blob_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46f36cc267441b8e9eb242611c090de947c19e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module BlobViewer
  module Rich
    extend ActiveSupport::Concern

    included do
      self.type = :rich
      self.switcher_icon = 'doc-text'
      self.switcher_title = 'rendered file'
    end
  end
end