-
-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
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
Add django decorator #976
Add django decorator #976
Conversation
if not hasattr(settings, "OPENAPI"): | ||
if not hasattr(settings, "OPENAPI_SPEC"): | ||
raise ImproperlyConfigured( | ||
"OPENAPI_SPEC not defined in settings" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OPENAPI_SPEC is a depreacted, so we should suggest to use OPENAPI.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #976 +/- ##
==========================================
+ Coverage 90.36% 90.62% +0.26%
==========================================
Files 148 150 +2
Lines 4328 4374 +46
Branches 529 532 +3
==========================================
+ Hits 3911 3964 +53
- Misses 316 318 +2
+ Partials 101 92 -9 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just one suggestion otherwise looks good 💪
Co-authored-by: Artur Maciag <[email protected]>
Thank you for the contribution |
Hello,
I have a project where I would like to be able to configure specifications for each view separately, because we have several API variants, and therefore several specification files.
This is very inspired by the approach used by Flask integrations.
Best regards,
Kamil Breguła