├── .github ├── dependabot.yaml └── workflows │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .pylintrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASE.md ├── dev-requirements.txt ├── firstuseauthenticator ├── __init__.py ├── _version.py ├── firstuseauthenticator.py └── templates │ ├── __init__.py │ └── reset.html ├── pytest.ini ├── setup.py └── tests └── test_authenticator.py /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/.pylintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/RELEASE.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /firstuseauthenticator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/firstuseauthenticator/__init__.py -------------------------------------------------------------------------------- /firstuseauthenticator/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/firstuseauthenticator/_version.py -------------------------------------------------------------------------------- /firstuseauthenticator/firstuseauthenticator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/firstuseauthenticator/firstuseauthenticator.py -------------------------------------------------------------------------------- /firstuseauthenticator/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstuseauthenticator/templates/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/firstuseauthenticator/templates/reset.html -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_authenticator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/firstuseauthenticator/HEAD/tests/test_authenticator.py --------------------------------------------------------------------------------