Added support for Email and Auth blacklists

This commit is contained in:
2010-07-07 11:05:34 +01:00
parent 07407cc1e0
commit 9d009a0cf7
2 changed files with 8 additions and 1 deletions

View File

@@ -51,6 +51,7 @@ BLACKLIST_TYPE_CHARACTER = 1
BLACKLIST_TYPE_CORPORATION = 2
BLACKLIST_TYPE_ALLIANCE = 3
BLACKLIST_TYPE_EMAIL = 4
BLACKLIST_TYPE_AUTH = 5
BLACKLIST_TYPE_CHOICES = (
(BLACKLIST_TYPE_REDDIT, 'Reddit Account'),
@@ -58,4 +59,5 @@ BLACKLIST_TYPE_CHOICES = (
(BLACKLIST_TYPE_CORPORATION, 'Corporation'),
(BLACKLIST_TYPE_ALLIANCE, 'Alliance'),
(BLACKLIST_TYPE_EMAIL, 'Email Address'),
(BLACKLIST_TYPE_AUTH, 'Auth Account'),
)