mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-06 03:46:39 +08:00
fix hound
This commit is contained in:
parent
60f23b109b
commit
88890ab65b
2 changed files with 4 additions and 4 deletions
|
@ -67,8 +67,8 @@ Rails.application.configure do
|
||||||
|
|
||||||
# Enable first-time tutorial for users signing in the sciNote for
|
# Enable first-time tutorial for users signing in the sciNote for
|
||||||
# the first time.
|
# the first time.
|
||||||
config.x.enable_tutorial = ENV["ENABLE_TUTORIAL"] == "true"
|
config.x.enable_tutorial = ENV['ENABLE_TUTORIAL'] == 'true'
|
||||||
|
|
||||||
# Enable reCAPTCHA
|
# Enable reCAPTCHA
|
||||||
config.x.enable_recaptcha = ENV["ENABLE_RECAPTCHA"] == "true"
|
config.x.enable_recaptcha = ENV['ENABLE_RECAPTCHA'] == 'true'
|
||||||
end
|
end
|
||||||
|
|
|
@ -100,8 +100,8 @@ Rails.application.configure do
|
||||||
|
|
||||||
# Enable first-time tutorial for users signing in the sciNote for
|
# Enable first-time tutorial for users signing in the sciNote for
|
||||||
# the first time.
|
# the first time.
|
||||||
config.x.enable_tutorial = ENV["ENABLE_TUTORIAL"] != "false"
|
config.x.enable_tutorial = ENV['ENABLE_TUTORIAL'] != 'false'
|
||||||
|
|
||||||
# Enable reCAPTCHA
|
# Enable reCAPTCHA
|
||||||
config.x.enable_recaptcha = ENV["ENABLE_RECAPTCHA"] == "true"
|
config.x.enable_recaptcha = ENV['ENABLE_RECAPTCHA'] == 'true'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue