realms-wiki/realms/modules/auth/hooks.py

9 lines
257 B
Python
Raw Normal View History

2014-10-22 00:06:27 +03:00
from flask import current_app
from flask_wtf import RecaptchaField
from .forms import RegistrationForm
def before_first_request():
if current_app.config['RECAPTCHA_ENABLE']:
setattr(RegistrationForm, 'recaptcha', RecaptchaField("You Human?"))