🚚 moved API properties into v1 endpoints

This commit is contained in:
EntireTwix 2021-07-19 22:35:08 -07:00
parent 5704d4668a
commit 0c15121ef0

View file

@ -74,7 +74,7 @@ public:
METHOD_ADD(api::DelSelf, "/v1/user/delete", Delete, Options, "UserFilter<true, false>", "JsonFilter<false>"); METHOD_ADD(api::DelSelf, "/v1/user/delete", Delete, Options, "UserFilter<true, false>", "JsonFilter<false>");
METHOD_ADD(api::AdminDelUser, "/v1/admin/user/delete", Delete, Options, "JsonFilter<true>", "UserFilter<false, true>"); //expects ["name"](string) METHOD_ADD(api::AdminDelUser, "/v1/admin/user/delete", Delete, Options, "JsonFilter<true>", "UserFilter<false, true>"); //expects ["name"](string)
#endif #endif
METHOD_ADD(api::ApiProperties, "/properties", Get, Options); METHOD_ADD(api::ApiProperties, "/v1/properties", Get, Options);
METHOD_LIST_END METHOD_LIST_END
}; };