mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-18 20:29:27 +00:00
Reworking of API key importing, allow keys to be updated
This commit is contained in:
@@ -12,8 +12,10 @@ class EVEAccount(EVEAPIModel):
|
||||
help_text="User that owns this account")
|
||||
description = models.CharField(max_length=50, blank=True,
|
||||
help_text="User-provided description.")
|
||||
api_key = models.CharField(max_length=64, verbose_name="API Key")
|
||||
api_user_id = models.IntegerField(verbose_name="API User ID")
|
||||
api_key = models.CharField(max_length=64, verbose_name="API Key",
|
||||
help_text="EVE API Key")
|
||||
api_user_id = models.IntegerField(verbose_name="API User ID",
|
||||
help_text="EVE API User ID")
|
||||
characters = models.ManyToManyField('eve_api.EVEPlayerCharacter', blank=True, null=True)
|
||||
api_status = models.IntegerField(choices=API_STATUS_CHOICES,
|
||||
default=API_STATUS_PENDING,
|
||||
|
||||
Reference in New Issue
Block a user