Removed /arbitrary PUT and PATCH API endpoints.

It's best to let the core decide which one to use now that it is able to.
This commit is contained in:
CalDescent
2021-11-16 19:36:24 +00:00
parent 6c995ed738
commit 332b874493
2 changed files with 2 additions and 148 deletions

View File

@@ -8,7 +8,7 @@ if [ -z "$*" ]; then
echo "Usage:"
echo
echo "Host/update data:"
echo "qdata [POST/PUT/PATCH] [service] [name] [dirpath] <identifier>"
echo "qdata POST [service] [name] [dirpath] <identifier>"
echo
echo "Fetch data:"
echo "qdata GET [service] [name] <identifier-or-default> <filepath-or-default> <rebuild>"
@@ -36,7 +36,7 @@ if [ -z "${name}" ]; then
fi
if [[ "${method}" == "POST" || "${method}" == "PUT" || "${method}" == "PATCH" ]]; then
if [[ "${method}" == "POST" ]]; then
directory=$4
identifier=$5