Implement basic Group handling (#3)

Co-authored-by: Tim Lorsbach <tim@lorsba.ch>
Reviewed-on: enviPath/enviPy#3
This commit is contained in:
2025-06-26 00:18:40 +12:00
parent 844d0708c9
commit bcd9451450
10 changed files with 269 additions and 15 deletions

View File

@ -25,7 +25,7 @@ class Command(BaseCommand):
else:
admin = User.objects.get(email='admin@lorsba.ch')
g = GroupManager.create_group(admin)
g = GroupManager.create_group(admin, 'enviPath Users', 'All enviPath Users')
g.user_member.add(anon)
g.save()