1
0
Fork 0
mirror of https://github.com/paper-trail-gem/paper_trail.git synced 2022-11-09 11:33:19 -05:00
paper-trail-gem--paper_trail/lib/paper_trail/config.rb

12 lines
194 B
Ruby
Raw Normal View History

module PaperTrail
class Config
include Singleton
attr_accessor :enabled
def initialize
# Indicates whether PaperTrail is on or off.
@enabled = true
end
end
end