https://github.com/incuna/django-user-management
User management model mixins and api views.
https://github.com/incuna/django-user-management
django django-rest-framework python user-management users
Last synced: 6 months ago
JSON representation
User management model mixins and api views.
- Host: GitHub
- URL: https://github.com/incuna/django-user-management
- Owner: incuna
- License: bsd-2-clause
- Created: 2014-02-07T10:52:02.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2023-04-15T17:30:46.000Z (over 2 years ago)
- Last Synced: 2025-06-03T05:33:13.910Z (7 months ago)
- Topics: django, django-rest-framework, python, user-management, users
- Language: Python
- Homepage:
- Size: 652 KB
- Stars: 61
- Watchers: 27
- Forks: 24
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# django-user-management
[](https://travis-ci.org/incuna/django-user-management) [](https://coveralls.io/r/incuna/django-user-management?branch=master) [](https://requires.io/github/incuna/django-user-management/requirements/?branch=master)
User management model mixins and API views/serializers based on [`Django`](https://github.com/django/django)
and [`djangorestframework`](https://github.com/tomchristie/django-rest-framework).
All documentation is in the [docs](docs/) directory.
- [Installation](docs/installation.md)
- [Mixins](docs/mixins.md)
- [Views](docs/views.md)
- [Avatar](docs/avatar.md)
`user_management` model mixins give flexibility to create your own `User` model.
By default all mixins are optional. Our mixins allow to create, identify users
(from their emails instead of their username) as well as sending password reset
and account validation emails.
`user_management` API views and serializers can be grouped into five sections:
* `auth`: authenticate and destroy a user session
* `password_reset`: send and confirm a request to reset a password
* `profile`: retrieve/update/delete the current user profile
* `register`: create an account and send an email to validate it
* `users`: give a list and a detail (retrieve, update, destroy) views about users