mirror of
https://github.com/paper-trail-gem/paper_trail.git
synced 2022-11-09 11:33:19 -05:00
12 lines
194 B
Ruby
12 lines
194 B
Ruby
|
module PaperTrail
|
||
|
class Config
|
||
|
include Singleton
|
||
|
attr_accessor :enabled
|
||
|
|
||
|
def initialize
|
||
|
# Indicates whether PaperTrail is on or off.
|
||
|
@enabled = true
|
||
|
end
|
||
|
end
|
||
|
end
|