Easily turn your app into a private area by requiring users to have an invitation code before they can register.
Features:
- Easy management from the Django admin.
- Or from the CLI with the full fledged interface.
- Integrates with any authentication provider.
Install using pip, preferably inside your virtualenv:
pip install django-getin
Then, add it to your INSTALLED_APPS
:
INSTALLED_APPS = [
...,
"getin"
]
We store invitations in the database, so, you need to apply migrations:
python manage.py migrate getin
License is MIT.
Copyright 2022 Josh Michael Karamuth