mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-04 06:06:19 +01:00
Added details to syncgroup cache
This commit is contained in:
3
celerytask/models.py
Normal file → Executable file
3
celerytask/models.py
Normal file → Executable file
@@ -5,3 +5,6 @@ from django.contrib.auth.models import User
|
|||||||
class SyncGroupCache(models.Model):
|
class SyncGroupCache(models.Model):
|
||||||
groupname = models.CharField(max_length=254)
|
groupname = models.CharField(max_length=254)
|
||||||
user = models.ForeignKey(User)
|
user = models.ForeignKey(User)
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return self.user.username + ' - ' + self.groupname + ' - SyncGroupCache'
|
||||||
|
|||||||
Reference in New Issue
Block a user