mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-10 04:50:16 +02:00
13 lines
452 B
Python
13 lines
452 B
Python
from django.core.management.base import BaseCommand
|
|
from django.contrib.auth.models import User
|
|
from services.tasks import validate_services
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = "Ensures all service accounts belong to users with required permissions."
|
|
|
|
def handle(self, *args, **options):
|
|
for u in User.objects.all():
|
|
validate_services(u)
|
|
self.stdout.write(self.style.SUCCESS('Verified all user service accounts.'))
|