Skip to content

Commit

Permalink
Fixing a grammar issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chayim committed May 4, 2024
1 parent 1dd21a3 commit 8cbb436
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Ninja JWT can be installed with pip:

pip install django-ninja-jwt

Also, you need to register `NinjaJWTDefaultController` controller to you Django-Ninja api.
Also, you need to register `NinjaJWTDefaultController` controller to your Django-Ninja api.
The `NinjaJWTDefaultController` comes with three routes `obtain_token`, `refresh_token` and `verify_token`

```python
Expand All @@ -27,7 +27,7 @@ api.register_controllers(NinjaJWTDefaultController)

```

The `NinjaJWTDefaultController` comes with three routes `obtain_token`, `refresh_token` and `verify_token`.
The `NinjaJWTDefaultController` comes with three routes `obtain_token`, `refresh_token` and `verify_token`.
It is a combination of two subclass `TokenVerificationController` and `TokenObtainPairController`.
If you wish to customize these routes, you can inherit from these controllers and change its implementation

Expand Down

0 comments on commit 8cbb436

Please sign in to comment.