From e33fef19ceb3c7e2f8ddd4558b4f1c9740aeb1fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Faruk=20Korkmaz?= Date: Thu, 30 Apr 2026 14:20:30 +0300 Subject: [PATCH] fix(docs): replace legacy django-ninja.rest-framework.com links with django-ninja.dev --- README.md | 2 +- docs/api_controller/api_controller_route.md | 2 +- docs/index.md | 2 +- docs/tutorial/authentication.md | 2 +- docs/tutorial/form.md | 4 ++-- docs/tutorial/path.md | 2 +- docs/tutorial/query.md | 2 +- docs/tutorial/schema.md | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 9bb62af2..d1180e97 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/api_controller/api_controller_route.md b/docs/api_controller/api_controller_route.md index a2b10754..094ae0c4 100644 --- a/docs/api_controller/api_controller_route.md +++ b/docs/api_controller/api_controller_route.md @@ -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) diff --git a/docs/index.md b/docs/index.md index b0c3eefc..5c2da510 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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 diff --git a/docs/tutorial/authentication.md b/docs/tutorial/authentication.md index 025b929f..b81febaa 100644 --- a/docs/tutorial/authentication.md +++ b/docs/tutorial/authentication.md @@ -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 diff --git a/docs/tutorial/form.md b/docs/tutorial/form.md index 410ec06c..4ebe6925 100644 --- a/docs/tutorial/form.md +++ b/docs/tutorial/form.md @@ -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 @@ -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/) diff --git a/docs/tutorial/path.md b/docs/tutorial/path.md index aaedbe50..0c01c8d7 100644 --- a/docs/tutorial/path.md +++ b/docs/tutorial/path.md @@ -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/) diff --git a/docs/tutorial/query.md b/docs/tutorial/query.md index c22c320a..5ede355e 100644 --- a/docs/tutorial/query.md +++ b/docs/tutorial/query.md @@ -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/) diff --git a/docs/tutorial/schema.md b/docs/tutorial/schema.md index 821507a9..14a1579b 100644 --- a/docs/tutorial/schema.md +++ b/docs/tutorial/schema.md @@ -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:**