mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
Checkstyle
This commit is contained in:
@ -245,15 +245,14 @@ public class GenerateOpenApiSpecAction extends AbstractQActionFunction<GenerateO
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
openAPI.getPaths().put("/" + tableName + "/query", new Path().withGet(queryGet)
|
openAPI.getPaths().put("/" + tableName + "/query", new Path().withGet(queryGet));
|
||||||
/*
|
/*
|
||||||
.withPost(new Method()
|
.withPost(new Method()
|
||||||
.withSummary("Search the " + tableLabel + " table by posting a QueryFilter object.")
|
.withSummary("Search the " + tableLabel + " table by posting a QueryFilter object.")
|
||||||
.withTags(ListBuilder.of(tableLabel))
|
.withTags(ListBuilder.of(tableLabel))
|
||||||
.withResponses(buildStandardErrorResponses())
|
.withResponses(buildStandardErrorResponses())
|
||||||
)
|
)
|
||||||
*/
|
*/
|
||||||
);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
openAPI.getPaths().put("/" + tableName + "/{" + primaryKeyName + "}", new Path()
|
openAPI.getPaths().put("/" + tableName + "/{" + primaryKeyName + "}", new Path()
|
||||||
|
Reference in New Issue
Block a user