From 79dcb42c237c8ebf9415ae84a35c4c4f90d846b5 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Tue, 12 Dec 2023 13:26:17 +0100 Subject: [PATCH] fix command initial_datas --- idhub/management/commands/initial_datas.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/idhub/management/commands/initial_datas.py b/idhub/management/commands/initial_datas.py index 982bb97..1d44558 100644 --- a/idhub/management/commands/initial_datas.py +++ b/idhub/management/commands/initial_datas.py @@ -30,8 +30,8 @@ class Command(BaseCommand): f = csv.reader(csvfile, delimiter=';', quotechar='"') for r in f: self.create_organizations(r[0].strip(), r[1].strip()) - self.sync_credentials_organizations("test1", "test2") - self.sync_credentials_organizations("test3", "test4") + self.sync_credentials_organizations("pangea.org", "somconnexio.coop") + self.sync_credentials_organizations("local 8000", "local 9000") def create_admin_users(self, email, password): User.objects.create_superuser(email=email, password=password)