fix hound

This commit is contained in:
Mojca Lorber 2016-11-22 15:05:25 +01:00
parent 60f23b109b
commit 88890ab65b
2 changed files with 4 additions and 4 deletions

View file

@ -67,8 +67,8 @@ Rails.application.configure do
# Enable first-time tutorial for users signing in the sciNote for
# the first time.
config.x.enable_tutorial = ENV["ENABLE_TUTORIAL"] == "true"
config.x.enable_tutorial = ENV['ENABLE_TUTORIAL'] == 'true'
# Enable reCAPTCHA
config.x.enable_recaptcha = ENV["ENABLE_RECAPTCHA"] == "true"
config.x.enable_recaptcha = ENV['ENABLE_RECAPTCHA'] == 'true'
end

View file

@ -100,8 +100,8 @@ Rails.application.configure do
# Enable first-time tutorial for users signing in the sciNote for
# the first time.
config.x.enable_tutorial = ENV["ENABLE_TUTORIAL"] != "false"
config.x.enable_tutorial = ENV['ENABLE_TUTORIAL'] != 'false'
# Enable reCAPTCHA
config.x.enable_recaptcha = ENV["ENABLE_RECAPTCHA"] == "true"
config.x.enable_recaptcha = ENV['ENABLE_RECAPTCHA'] == 'true'
end