Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Django Ninja Extra

Django Ninja Extra is a powerful extension for [Django Ninja](https://django-ninja.rest-framework.com) that enhances your Django REST API development experience. It introduces class-based views and advanced features while maintaining the high performance and simplicity of Django Ninja. Whether you're building a small API or a large-scale application, Django Ninja Extra provides the tools you need for clean, maintainable, and efficient API development.
Django Ninja Extra is a powerful extension for [Django Ninja](https://django-ninja.dev) that enhances your Django REST API development experience. It introduces class-based views and advanced features while maintaining the high performance and simplicity of Django Ninja. Whether you're building a small API or a large-scale application, Django Ninja Extra provides the tools you need for clean, maintainable, and efficient API development.

## Features

Expand Down
2 changes: 1 addition & 1 deletion docs/api_controller/api_controller_route.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ In this illustration, the `say_after` endpoint is defined as an asynchronous fun
keyword, allowing for asynchronous operations within the endpoint.

!!! info
Read more on Django-Ninja [Async Support](https://django-ninja.rest-framework.com/async-support/#quick-example)
Read more on Django-Ninja [Async Support](https://django-ninja.dev/guides/async-support/#quick-example)
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Django Ninja Extra

Django Ninja Extra is a powerful extension for [Django Ninja](https://django-ninja.rest-framework.com) that enhances your Django REST API development experience. It introduces class-based views and advanced features while maintaining the high performance and simplicity of Django Ninja. Whether you're building a small API or a large-scale application, Django Ninja Extra provides the tools you need for clean, maintainable, and efficient API development.
Django Ninja Extra is a powerful extension for [Django Ninja](https://django-ninja.dev) that enhances your Django REST API development experience. It introduces class-based views and advanced features while maintaining the high performance and simplicity of Django Ninja. Whether you're building a small API or a large-scale application, Django Ninja Extra provides the tools you need for clean, maintainable, and efficient API development.

## Features

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class GlobalAuth(HttpBearer):
api = NinjaExtraAPI(auth=GlobalAuth())

```
Read more on django-ninja [authentication](https://django-ninja.rest-framework.com/tutorial/authentication/)
Read more on django-ninja [authentication](https://django-ninja.dev/guides/authentication)

## Asynchronous Auth Classes

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorial/form.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

If you are not sure how to make a form post request like `application/x-www-form-urlencode` or `multipart/form-data` in django-ninja-extra, then this guide would be useful for you.
Django-Ninja already covers most of the use cases [here](https://django-ninja.rest-framework.com/tutorial/form-params/), but I will give you a quick summary here.
Django-Ninja already covers most of the use cases [here](https://django-ninja.dev/guides/input/form-params/), but I will give you a quick summary here.

### Form Data as Params

Expand All @@ -22,4 +22,4 @@ Two things to note here:


!!! info
For more information on this, visit [Django-Ninja Form tutorial](https://django-ninja.rest-framework.com/tutorial/form-params/)
For more information on this, visit [Django-Ninja Form tutorial](https://django-ninja.dev/guides/input/form-params/)
2 changes: 1 addition & 1 deletion docs/tutorial/path.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ class MyAPIController:
The value of the path parameter `user_id` will be passed to your function as the argument `user_id`.

!!! info
Read [more](https://django-ninja.rest-framework.com/tutorial/path-params/)
Read [more](https://django-ninja.dev/guides/input/path-params/)
2 changes: 1 addition & 1 deletion docs/tutorial/query.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ To query this operation, you use a URL like:
```

!!! info
Read [more](https://django-ninja.rest-framework.com/tutorial/query-params/)
Read [more](https://django-ninja.dev/guides/input/query-params/)
2 changes: 1 addition & 1 deletion docs/tutorial/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ But if you want complete DRF Serializer replacement then **Ninja-Schema** is wha

Ninja Schema converts your Django ORM models to Pydantic schemas with more Pydantic features supported.

**Inspired by**: [django-ninja](https://django-ninja.rest-framework.com/) and [djantic](https://jordaneremieff.github.io/djantic/)
**Inspired by**: [django-ninja](https://django-ninja.dev/) and [djantic](https://jordaneremieff.github.io/djantic/)

**Key features:**

Expand Down