update sign up notifications
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 9s

This commit is contained in:
2026-08-02 14:54:00 +05:00
parent 1f5e60dbb4
commit 1ea2f9f4c2
3 changed files with 88 additions and 16 deletions
+3 -1
View File
@@ -8,7 +8,9 @@ class Command(BaseCommand):
help = "Seeds baseline reference data (atolls and islands) required for sign up."
def handle(self, *args, **options):
atoll, atoll_created = Atoll.objects.get_or_create(name="Faafu")
# Atoll name must match the person-verify API's `atoll_en` (the atoll
# code letter, e.g. "F" for Faafu) or user verification fails.
atoll, atoll_created = Atoll.objects.get_or_create(name="F")
self.stdout.write(
self.style.SUCCESS(f"Created atoll: {atoll.name}")
if atoll_created