Skip to content

Commit

Permalink
docs: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentchalamon committed Aug 2, 2022
1 parent 1ba433d commit 5d1119e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Register this bundle in your kernel:
// config/bundles.php
return [
// ...
\CoopTilleuls\ForgotPasswordBundle\CoopTilleulsForgotPasswordBundle::class => ['all' => true],
CoopTilleuls\ForgotPasswordBundle\CoopTilleulsForgotPasswordBundle::class => ['all' => true],
];
```

Expand Down Expand Up @@ -170,9 +170,9 @@ Read full documentation about [how to ensure user is not authenticated](user_not
This bundle provides 2 events allowing you to build your own business:

- `coop_tilleuls_forgot_password.create_token`: dispatched when a user requests a new
password (`POST /forgot_password/`)
password (`POST /forgot-password/`)
- `coop_tilleuls_forgot_password.update_password`: dispatched when a user has reset its
password (`POST /forgot_password/{tokenValue}`)
password (`POST /forgot-password/{tokenValue}`)

Read full documentation about [usage](usage.md).

Expand Down
4 changes: 2 additions & 2 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

This bundle provides 2 events allowing you to build your own business:

- `coop_tilleuls_forgot_password.create_token`: dispatched when user requests a new password (`POST /forgot_password/`)
- `coop_tilleuls_forgot_password.create_token`: dispatched when user requests a new password (`POST /forgot-password/`)
- `coop_tilleuls_forgot_password.update_password`: dispatched when user has reset its
password (`POST /forgot_password/{tokenValue}`)
password (`POST /forgot-password/{tokenValue}`)

## Send email on user request

Expand Down

0 comments on commit 5d1119e

Please sign in to comment.