This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
auf-auf-django-secretquestions/secretquestions/conf.py

7 lines
179 B
Python

# -*- coding: utf-8 -*-
from django.conf import settings
SQ_SESSION_KEY = getattr(settings, 'SQ_SESSION_KEY', 'sq_token')
SQ_TOKEN_TTL = getattr(settings, 'SQ_TOKEN_TTL', 60*3)