mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 23:02:19 +00:00
Rework of the API import routines, now more task based
This is step one of cleaning up the eve_api application and replacing the working core with a more stable, celery based import queue. In addition we've added the ability to import a character just based on character ID, this should allow for populated corporate CEO positions on corps.
This commit is contained in:
@@ -26,9 +26,12 @@ API_KEYTYPE_CHOICES = (
|
||||
(API_KEYTYPE_FULL, 'Full'),
|
||||
)
|
||||
|
||||
API_GENDER_MALE = 1
|
||||
API_GENDER_FEMALE = 2
|
||||
|
||||
API_GENDER_CHOICES = (
|
||||
(1, 'Male'),
|
||||
(2, 'Female'),
|
||||
(API_GENDER_MALE, 'Male'),
|
||||
(API_GENDER_FEMALE, 'Female'),
|
||||
)
|
||||
|
||||
API_RACES_CHOICES = (
|
||||
|
||||
Reference in New Issue
Block a user