fix command initial_datas

This commit is contained in:
Cayo Puigdefabregas 2023-12-12 13:26:17 +01:00
parent db058178d1
commit 79dcb42c23
1 changed files with 2 additions and 2 deletions

View File

@ -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)