From 7a9c12dcdfe0a2c6af2a66950662da10ab6f36fb Mon Sep 17 00:00:00 2001 From: Samir Boulahtit Date: Sat, 22 Nov 2025 16:07:24 +0100 Subject: [PATCH] docs: fix broken link in auth dependencies guide MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix MkDocs build error by removing markdown link to source code file. Change from [API Dependencies](../app/api/deps.py) to plain text reference to avoid strict mode warning about non-documentation files. Fixes: Doc file contains a link to 'app/api/deps.py' not in docs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- docs/development/AUTH_DEPENDENCIES_GUIDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development/AUTH_DEPENDENCIES_GUIDE.md b/docs/development/AUTH_DEPENDENCIES_GUIDE.md index 225b946c..b7dec85e 100644 --- a/docs/development/AUTH_DEPENDENCIES_GUIDE.md +++ b/docs/development/AUTH_DEPENDENCIES_GUIDE.md @@ -188,4 +188,4 @@ from app.api.deps import get_current_user # Header-only, any role - [Authentication Documentation](../api/authentication.md) - Complete auth system docs - [Authentication Flow Diagrams](../api/authentication-flow-diagrams.md) - Visual flows -- [API Dependencies](../app/api/deps.py) - Source code +- Source code: `app/api/deps.py` - Authentication dependency implementations