-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set PluginInstanceRequest.additionalProperties={}
- Loading branch information
1 parent
5ca0271
commit ffaba1f
Showing
2 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
def additionalproperties_for_plugins_instances_create(result, **_kwargs): | ||
""" | ||
Set ``additionalProperties: {}`` for the request body of ``plugins_instances_create`` | ||
(``additionalProperties`` cannot be set ordinarily using drf-spectacular ``@extend_schema``). | ||
:param result: an OpenAPI specification | ||
""" | ||
result['components']['schemas']['PluginInstanceRequest']['additionalProperties'] = {} | ||
return result | ||
|