Working on new version of website

Signed-off-by: Arthur DANJOU <arthurdanjou@outlook.fr>
This commit is contained in:
2021-08-05 15:26:36 +02:00
parent ed17d86913
commit 721eb3addc
43 changed files with 525 additions and 320 deletions

View File

@@ -13,7 +13,7 @@ declare module '@ioc:Adonis/Addons/Auth' {
| Providers
|--------------------------------------------------------------------------
|
| The providers are used to fetch users. The Auth module comes pre-bundled
| The providers are used to fetch user. The Auth module comes pre-bundled
| with two providers that are `Lucid` and `Database`. Both uses database
| to fetch user details.
|
@@ -44,14 +44,14 @@ declare module '@ioc:Adonis/Addons/Auth' {
| Guards
|--------------------------------------------------------------------------
|
| The guards are used for authenticating users using different drivers.
| The guards are used for authenticating user using different drivers.
| The auth module comes with 3 different guards.
|
| - SessionGuardContract
| - BasicAuthGuardContract
| - OATGuardContract ( Opaque access token )
|
| Every guard needs a provider for looking up users from the database.
| Every guard needs a provider for looking up user from the database.
|
*/
interface GuardsList {