Skip to content

Commit

Permalink
reenabling captcha
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Benzoni committed Jun 26, 2024
1 parent c311163 commit f289aef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
PATH_TO_OUTPUT_CSV = os.getenv('PATH_TO_OUTPUT_CSV', '')
MATCH_VALUES_TO_IGNORE = os.getenv('MATCH_VALUES_TO_IGNORE', '')
CURRENT_ENVIRONMENT = os.getenv('CURRENT_ENVIRONMENT', 'production')
CAPTCHA_SECRET = '6LfmDgAqAAAAAMUaWbu5sDywH1FatEldecSalEIE'
CAPTCHA_SECRET = os.getenv('CAPTCHA_SECRET', '')

from init_app import db, init_app
from models import RegistrationKey, SiteBase, SiteIndicator, User
Expand Down

0 comments on commit f289aef

Please sign in to comment.