feat: add location deduplication

This commit is contained in:
2025-05-23 18:13:23 +02:00
parent c50e0b18b5
commit 19d9dea8b1
4 changed files with 41 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
from django.core.management import BaseCommand
from fellchensammlung.tools.admin import dedup_locations
class Command(BaseCommand):
help = 'Deduplicate locations based on place_id'
def handle(self, *args, **options):
dedup_locations()