Closed farindk closed 3 years ago
Added support for HTTP DELETE operations in the O2Requestor. Since delete is a C++ keyword, I have named the function deleteResource() just like the Qt function.
DELETE
O2Requestor
delete
deleteResource()
customRequest() can do this, but maybe it's nicer to separate it out.
Yes, having a dedicated function for this is easier to use and has better readability. Thanks for the fast merge.
Added support for HTTP
DELETE
operations in theO2Requestor
. Sincedelete
is a C++ keyword, I have named the functiondeleteResource()
just like the Qt function.