Moved INITIAL_NO_AUTH_ACTION_COUNT to settings.

This commit is contained in:
acsbendi 2019-07-24 16:30:48 +02:00
commit 3dd2e3a1b8
2 changed files with 3 additions and 4 deletions

View file

@ -1,3 +1,4 @@
import os
TEST_SERVER_MODE = os.environ.get('TEST_SERVER_MODE', '0').lower() == 'true'
INITIAL_NO_AUTH_ACTION_COUNT = float(os.environ.get('INITIAL_NO_AUTH_ACTION_COUNT', float('inf')))