Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ supportedSubmitMethods | An array of of the HTTP operations that will have the '
oauth2RedirectUrl | OAuth redirect URL
showRequestHeaders | Whether or not to show the headers that were sent when making a request via the 'Try it out!' option. Defaults to `false`.
jsonEditor | Enables a graphical view for editing complex bodies. Defaults to `false`.
disableAllOfResolving | Disables the resolving of `allOf` tags, which can be very slow. If you don't use `allOf` in your spec, this can speed up the initial loading of Swagger UI significantly while not affecting functionality. Defaults to `false`.

* All other parameters are explained in greater detail below

Expand Down
3 changes: 2 additions & 1 deletion src/main/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@
jsonEditor: false,
apisSorter: "alpha",
defaultModelRendering: 'schema',
showRequestHeaders: false
showRequestHeaders: false,
disableAllOfResolving: false
});

function addApiKeyAuthorization(){
Expand Down