Full-Stack Developer & Automation Specialist
ABU DHABI UAE
from django.core.management.base import BaseCommand from automation.models import Task class Command(BaseCommand): def handle(self, *args, **options): # Worldlink Enterprise automation tasks = Task.objects.filter(status='pending') for task in tasks: task.process_automation() self.stdout.write(f"✅ Processed {task.name}")