Add /validate endpoint to admin REST api (#81)

This commit is contained in:
Lee *!* Clagett
2023-09-27 16:50:12 -04:00
committed by Lee *!* Clagett
parent 3b35ce2845
commit 10dc4801d7
4 changed files with 122 additions and 1 deletions

View File

@@ -777,6 +777,7 @@ namespace lws
{"/modify_account_status", call_admin<rpc::modify_account_>, 50 * 1024},
{"/reject_requests", call_admin<rpc::reject_requests_>, 50 * 1024},
{"/rescan", call_admin<rpc::rescan_>, 50 * 1024},
{"/validate", call_admin<rpc::validate_>, 50 * 1024},
{"/webhook_add", call_admin<rpc::webhook_add_>, 50 * 1024},
{"/webhook_delete", call_admin<rpc::webhook_delete_>, 50 * 1024},
{"/webhook_delete_uuid", call_admin<rpc::webhook_del_uuid_>,50 * 1024},