Change Deface config so it defaults to 'true'

This commit is contained in:
Luka Murn 2017-02-27 12:54:51 +01:00
parent de8034c5b9
commit 8e09e86a0e
3 changed files with 3 additions and 3 deletions

View file

@ -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.

View file

@ -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.

View file

@ -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.