firstuseauthenticator/firstuseauthenticator/__init__.py
YuviPanda b1e5804d65 Initial commit
Pretty much all the things work
2016-10-24 20:32:14 -07:00

12 lines
329 B
Python

"""
JupyterHub Authenticator to let users set their password on first use.
After installation, you can enable this with:
```
c.JupyterHub.authenticator_class = 'firstuseauthenticator.FirstUseAuthenticator'
```
"""
from firstuseauthenticator.firstuseauthenticator import FirstUseAuthenticator
__all__ = [FirstUseAuthenticator]