* Fixes #585 where appconf sniffs the module name for a settings prefix

Co-authored-by: Mark Walker <mark.walker@realbuzz.com>
This commit is contained in:
Aleksi Häkli 2020-05-15 19:24:08 +03:00 committed by GitHub
parent f534db4f42
commit 3ceb546ae2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,9 @@ from appconf import AppConf
class AxesAppConf(AppConf):
class Meta:
prefix = "axes"
# disable plugin when set to False
ENABLED = True