Metadata-Version: 2.1
Name: apis-acdhch-django-invite
Version: 0.2.0
Summary: Invite Links for APIS Instances
License: MIT
Author: Birger Schacht
Author-email: birger.schacht@oeaw.ac.at
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: apis-core-rdf (>=0.33.0)
Description-Content-Type: text/markdown

# apis_acdhch_django_invite

Invite app for Django applications.

This app provides an invite link that only works with valid tokens. The invite tokens can be generated in Django's admin interface.
The invite endpoint is `/invite/<token>`.

# Installation

Add `apis_acdhch_django_invite` to your `INSTALLED_APPS`.
Include the apis-acdhch-django-invite urls in your `urls.py`:
```
urlpatterns += [path("", include("apis_acdhch_django_invite.urls")),]
```

