##// END OF EJS Templates
Fixed some translation issues. Changed default captcha setting to "off" to pass tests. Removed the maximum page scale. This refs #36 and fixes #26, #2
Fixed some translation issues. Changed default captcha setting to "off" to pass tests. Removed the maximum page scale. This refs #36 and fixes #26, #2

File last commit:

r81:095d634d default
r85:895eadaa default
Show More
utils.py
14 lines | 309 B | text/x-python | PythonLexer
"""
This module contains helper functions and helper classes.
"""
from neboard import settings
def check_if_human(request):
"""
Check if request is made by a user.
It contains rules which check for bots.
"""
# FIXME: need to insert checking logic
return not settings.ENABLE_CAPTCHA