Fix typo in auth docs stategies/database.md (#1437)

This commit is contained in:
Marios Pitsiali
2024-09-13 18:46:25 +03:00
committed by GitHub
parent c0c4da9a6c
commit 42ddc241b9

View File

@@ -1,6 +1,6 @@
# Database
The most natural way for storing tokens is of course the very same database you're using for your application. In this strategy, we set up a table (or collection) for storing those tokens with the associated user id. On each request, we try to retrive this token from the database to get the corresponding user id.
The most natural way for storing tokens is of course the very same database you're using for your application. In this strategy, we set up a table (or collection) for storing those tokens with the associated user id. On each request, we try to retrieve this token from the database to get the corresponding user id.
## Configuration