Skip to content

Commit 0c9d58d

Browse files
committed
doc update: added links to code examples
1 parent 8314fcb commit 0c9d58d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/security/authentication.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ class AuthController(ControllerBase):
606606
async def refresh_token(self, payload: str = Body(embed=True)):
607607
return await self.auth_service.refresh_token(payload)
608608
```
609-
Source Code to this example is [here]()
609+
Source Code to this example is [here](https://github.com/python-ellar/ellar/tree/main/examples/03-auth-with-guards)
610610

611611
## **2. Authentication Schemes**
612612

@@ -779,4 +779,4 @@ $ curl http://localhost:8000/auth/profile -H "Authorization: Bearer eyJhbGciOiJI
779779
{"exp":1698793558,"iat":1698793258,"jti":"e96e94c5c3ef4fbbbd7c2468eb64534b","sub":1,"user_id":1,"username":"john", "id":null,"auth_type":"bearer"}
780780

781781
```
782-
Source Code to this example is [here]()
782+
Source Code to this example is [here](https://github.com/python-ellar/ellar/tree/main/examples/04-auth-with-handlers)

0 commit comments

Comments
 (0)