mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-01 01:14:30 +08:00
Change Deface config so it defaults to 'true'
This commit is contained in:
parent
de8034c5b9
commit
8e09e86a0e
3 changed files with 3 additions and 3 deletions
|
@ -66,7 +66,7 @@ Rails.application.configure do
|
|||
config.action_view.raise_on_missing_translations = true
|
||||
|
||||
# Enable/disable Deface
|
||||
config.deface.enabled = ENV['DEFACE_ENABLED'] == 'true'
|
||||
config.deface.enabled = ENV['DEFACE_ENABLED'] != 'false'
|
||||
|
||||
# Enable first-time tutorial for users signing in the sciNote for
|
||||
# the first time.
|
||||
|
|
|
@ -99,7 +99,7 @@ Rails.application.configure do
|
|||
config.active_record.dump_schema_after_migration = false
|
||||
|
||||
# Enable/disable Deface
|
||||
config.deface.enabled = ENV['DEFACE_ENABLED'] == 'true'
|
||||
config.deface.enabled = ENV['DEFACE_ENABLED'] != 'false'
|
||||
|
||||
# Enable first-time tutorial for users signing in the sciNote for
|
||||
# the first time.
|
||||
|
|
|
@ -66,7 +66,7 @@ Rails.application.configure do
|
|||
# config.action_view.raise_on_missing_translations = true
|
||||
|
||||
# Enable/disable Deface
|
||||
config.deface.enabled = ENV['DEFACE_ENABLED'] == 'true'
|
||||
config.deface.enabled = ENV['DEFACE_ENABLED'] != 'false'
|
||||
|
||||
# Enable first-time tutorial for users signing in the sciNote for
|
||||
# the first time.
|
||||
|
|
Loading…
Add table
Reference in a new issue