We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi i want to add some header to all of my request something like this
platform: Annotated[str, Header(alias="PLATFORM")],
so i want to add it with decorators to my routs but in a class it removes other routs and change the name of that rout to wrapper wich is in decorator
i knew i should use django ninja decorator from ninja.decorators import decorate_view
but i am not sure in this case what should i use
The text was updated successfully, but these errors were encountered:
@Metal-Bat Can you please show some code examples? I don't really get what the problem is
Sorry, something went wrong.
No branches or pull requests
hi
i want to add some header to all of my request
something like this
platform: Annotated[str, Header(alias="PLATFORM")],
so i want to add it with decorators to my routs
but in a class it removes other routs and change the name of that rout to wrapper wich is in decorator
i knew i should use django ninja decorator
from ninja.decorators import decorate_view
but i am not sure in this case what should i use
The text was updated successfully, but these errors were encountered: