From ee621d0b3161a92a4e0883ab0571b47ab38d25c1 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Wed, 8 May 2024 20:20:18 -0700 Subject: [PATCH] Updated Setting up Authentication (markdown) --- Setting-up-Authentication.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Setting-up-Authentication.md b/Setting-up-Authentication.md index 3ab5ba3..716ef52 100644 --- a/Setting-up-Authentication.md +++ b/Setting-up-Authentication.md @@ -152,9 +152,9 @@ curl -X 'POST' \ #### Further Reading -- ArchiveBox auth implementation source code: [`archivebox/api/auth.py`](https://github.com/ArchiveBox/ArchiveBox/blob/dev/archivebox/api/auth.py#:~:text=API_AUTH_METHODS) + [`archivebox/api/v1_auth.py`](https://github.com/ArchiveBox/ArchiveBox/blob/dev/archivebox/api/v1_auth.py) -- ArchiveBox uses [`django-ninja` for authentication](https://django-ninja.dev/guides/authentication/) internally -- The `/api/v1/docs` UI to try out the authentication methods is powered by [Swagger](https://swagger.io/docs/specification/authentication/) +- The ArchiveBox API auth source code: [`archivebox/api/auth.py`](https://github.com/ArchiveBox/ArchiveBox/blob/dev/archivebox/api/auth.py#:~:text=API_AUTH_METHODS) + [`archivebox/api/v1_auth.py`](https://github.com/ArchiveBox/ArchiveBox/blob/dev/archivebox/api/v1_auth.py) +- The [`django-ninja` auth docs](https://django-ninja.dev/guides/authentication/) (powers our API) +- The [Swagger auth docs](https://swagger.io/docs/specification/authentication/) for the interactive API Docs UI