mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-12 22:10:16 +02:00
Added details to syncgroup cache
This commit is contained in:
parent
56bb7f5282
commit
121cd5e9a6
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):
|
||||
groupname = models.CharField(max_length=254)
|
||||
user = models.ForeignKey(User)
|
||||
|
||||
def __str__(self):
|
||||
return self.user.username + ' - ' + self.groupname + ' - SyncGroupCache'
|
||||
|
Loading…
x
Reference in New Issue
Block a user