We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b76772 commit a5ab77aCopy full SHA for a5ab77a
springdoc-openapi-starter-common/src/main/java/org/springdoc/api/AbstractOpenApiResource.java
@@ -340,9 +340,20 @@ private void getOpenApi() {
340
this.getOpenApi(null, Locale.getDefault());
341
}
342
343
+ /**
344
+ * Gets open api.
345
+ *
346
+ * @param locale the locale
347
+ * @return the open api
348
+ */
349
+ protected OpenAPI getOpenApi(Locale locale) {
350
+ return this.getOpenApi(null, locale);
351
+ }
352
+
353
/**
354
* Gets open api.
355
*
356
+ * @param serverBaseUrl the server base url
357
* @param locale the locale
358
* @return the open api
359
*/
0 commit comments