Skip to content

Commit

Permalink
Merge pull request #925 from vincentdavis/Fix-response-schema-link
Browse files Browse the repository at this point in the history
Fix links on `Motivation` page of Docs.
  • Loading branch information
vitalik authored Nov 16, 2023
2 parents a336e0e + 1fb20cc commit 6c27cf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/motivation.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Some companies are already looking for developers with django ninja experience.

#### Main Features

1) Since you can have multiple Django Ninja API instances - you can run [multiple API versions](/tutorial/versioning) inside one Django project.
1) Since you can have multiple Django Ninja API instances - you can run [multiple API versions](/guides/versioning/) inside one Django project.

```python
api_v1 = NinjaAPI(version='1.0', auth=token_auth)
Expand All @@ -75,7 +75,7 @@ urlpatterns = [
]
```

2) The Django Ninja 'Schema' class is integrated with the ORM, so you can [serialize querysets](/tutorial/response-schema/#returning-querysets) or ORM objects:
2) The Django Ninja 'Schema' class is integrated with the ORM, so you can [serialize querysets](/guides/response/#returning-querysets) or ORM objects:

```python
@api.get("/tasks", response=List[TaskSchema])
Expand Down

0 comments on commit 6c27cf0

Please sign in to comment.