Based on an answer here: http://stackoverflow.com/a/6288863
1 2 3 4 5 6 | from django.contrib.auth.models import Group, User
new_user = User(username="foo", password="bar")
example_group = Group.objects.get(name="<GROUP_NAME>")
example_group.user_set.add(new_user)
|
More like this
- Serializer factory with Django Rest Framework by julio 3 months, 3 weeks ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 4 months, 1 week ago
- Help text hyperlinks by sa2812 5 months ago
- Stuff by NixonDash 7 months, 1 week ago
- Add custom fields to the built-in Group model by jmoppel 9 months, 2 weeks ago
Comments
Please login first before commenting.