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 f876fd9 commit cddf109Copy full SHA for cddf109
springdoc-openapi-common/src/main/java/org/springdoc/core/SwaggerUiConfigParameters.java
@@ -182,12 +182,24 @@ public SwaggerUiConfigParameters(SwaggerUiConfigProperties swaggerUiConfig) {
182
* Add group.
183
*
184
* @param group the group
185
+ * @param displayName the display name
186
*/
187
public void addGroup(String group, String displayName) {
188
SwaggerUrl swaggerUrl = new SwaggerUrl(group, null, displayName);
189
urls.add(swaggerUrl);
190
}
191
192
+ /**
193
+ * Add group.
194
+ *
195
+ * @param group the group
196
+ */
197
+ public void addGroup(String group) {
198
+ SwaggerUrl swaggerUrl = new SwaggerUrl(group, null, group);
199
+ urls.add(swaggerUrl);
200
+ }
201
+
202
203
/**
204
* Add url.
205
0 commit comments