mirror of
https://github.com/paper-trail-gem/paper_trail.git
synced 2022-11-09 11:33:19 -05:00
Code style: ruby 1.9 hash syntax
This commit is contained in:
parent
3f4d87b198
commit
4ca0ad160b
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ module PaperTrail
|
|||
# Thread-safe hash to hold PaperTrail's data. Initializing with needed
|
||||
# default values.
|
||||
def self.paper_trail_store
|
||||
RequestStore.store[:paper_trail] ||= { :request_enabled_for_controller => true }
|
||||
RequestStore.store[:paper_trail] ||= { request_enabled_for_controller: true }
|
||||
end
|
||||
|
||||
# Returns PaperTrail's configuration object.
|
||||
|
|
Loading…
Reference in a new issue