mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-28 03:21:12 +00:00
10 lines
253 B
Bash
10 lines
253 B
Bash
#!/bin/bash
|
|
#
|
|
|
|
python ../apps/manage.py shell << EOF
|
|
from users.models import User
|
|
from orgs.models import Organization
|
|
unorgs_users = [user for user in User.objects.all() if user.orgs.count() == 0]
|
|
Organization.default().members.add(*unorgs_users)
|
|
EOF
|