An open API service indexing awesome lists of open source software.

https://github.com/reddit/django-underpants

tiny helpers for integrating django with underpants
https://github.com/reddit/django-underpants

Last synced: 10 months ago
JSON representation

tiny helpers for integrating django with underpants

Awesome Lists containing this project

README

          

# django\_underpants

These are some stupid-simple helper classes to integrate [Django]'s
authentication systems with [Underpants] for intranet single-signon via Google
Apps OAuth.

Once installed, add the following to your `settings.py` to use the new classes.

```python
MIDDLEWARE_CLASSES += (
"django_underpants.UnderpantsRemoteUserMiddleware",
)

AUTHENTICATION_BACKENDS = (
"django_underpants.UnderpantsRemoteUserBackend",
)
```

[Django]: https://github.com/django/django
[Underpants]: https://github.com/kellegous/underpants/