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
Currently the internal _add_api_route() function is implemented with **kwargs which is passed to FastAPIs add_api_route()
add_api_route()
Unfortunately its not possible to add any **kwargs, because all the CRUD functions aren't utilising it.
I came to this issue because i use the OpenAPIGenerator which translates the opertaion_id argument as the function being called.
opertaion_id
If it is not provided, the generated function name is very ugly such as routeActivitiesItemIdPut for and update function.
routeActivitiesItemIdPut
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the internal _add_api_route() function is implemented with **kwargs which is passed to FastAPIs
add_api_route()
Unfortunately its not possible to add any **kwargs, because all the CRUD functions aren't utilising it.
I came to this issue because i use the OpenAPIGenerator which translates the
opertaion_id
argument as the function being called.If it is not provided, the generated function name is very ugly such as
routeActivitiesItemIdPut
for and update function.The text was updated successfully, but these errors were encountered: