diff options
author | Paul Holzinger <paul.holzinger@web.de> | 2020-08-23 14:48:32 +0200 |
---|---|---|
committer | Paul Holzinger <paul.holzinger@web.de> | 2020-08-23 15:10:22 +0200 |
commit | b4adc176145aae26bde24c9d0a64c115e231f1ea (patch) | |
tree | 3bbecdb080b0d8d0b84ffc819198ac682abaf59d /hack/swagger-check | |
parent | 4828455055010a1376f1e83832bfa34787f3a1e7 (diff) | |
download | podman-b4adc176145aae26bde24c9d0a64c115e231f1ea.tar.gz podman-b4adc176145aae26bde24c9d0a64c115e231f1ea.tar.bz2 podman-b4adc176145aae26bde24c9d0a64c115e231f1ea.zip |
[CI:DOCS] fix swagger api docs
Separate the volume endpoints into compat and libpod,
as it is done for the other endpoints.
Move the libpod image push endpoint to images.
Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
Diffstat (limited to 'hack/swagger-check')
-rwxr-xr-x | hack/swagger-check | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hack/swagger-check b/hack/swagger-check index d564b6554..d20318305 100755 --- a/hack/swagger-check +++ b/hack/swagger-check @@ -241,7 +241,7 @@ sub handle_handle { } # Special case: the following endpoints all get a custom tag - if ($endpoint =~ m!/(volumes|pods|manifests)/!) { + if ($endpoint =~ m!/(pods|manifests)/!) { $tag = $1; $operation =~ s/^libpod//; $operation = lcfirst $operation; |