add a message for deprecated config option
This commit is contained in:
parent
1a5050a0c1
commit
7aadd9d129
@ -16,7 +16,7 @@ module Locomotive
|
|||||||
:mailer_sender => 'support', #support@example.com'
|
:mailer_sender => 'support', #support@example.com'
|
||||||
:manage_subdomain => false,
|
:manage_subdomain => false,
|
||||||
:manage_manage_domains => false,
|
:manage_manage_domains => false,
|
||||||
:latest_items_nb => 5,
|
:latest_items_nb => 5,
|
||||||
:rack_cache => {
|
:rack_cache => {
|
||||||
:verbose => true,
|
:verbose => true,
|
||||||
:metastore => URI.encode("file:#{Rails.root}/tmp/dragonfly/cache/meta"), # URI encoded in case of spaces
|
:metastore => URI.encode("file:#{Rails.root}/tmp/dragonfly/cache/meta"), # URI encoded in case of spaces
|
||||||
@ -36,6 +36,16 @@ module Locomotive
|
|||||||
@@settings
|
@@settings
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def lastest_items_nb=(setting)
|
||||||
|
puts "DEPRACATION WARNING: The Locomotive config setting 'lastest_items_nb' was misspelled and will be removed in a future version. Please use 'latest_items_nb' in your Locomotive initializer."
|
||||||
|
self.settings.latest_items_nb = setting
|
||||||
|
end
|
||||||
|
|
||||||
|
def lastest_items_nb
|
||||||
|
puts "DEPRACATION WARNING: The Locomotive config setting 'lastest_items_nb' was misspelled and will be removed in a future version. Please use 'latest_items_nb' in your Locomotive initializer."
|
||||||
|
self.settings.latest_items_nb
|
||||||
|
end
|
||||||
|
|
||||||
def multi_sites?
|
def multi_sites?
|
||||||
self.multi_sites != false
|
self.multi_sites != false
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user