🐛 fixed last commit -m

This commit is contained in:
EntireTwix 2021-07-07 16:37:50 -07:00
parent 51a9ab8ff8
commit a1df11eeeb

View file

@ -15,9 +15,11 @@
CORS; \
callback(resp);
#define RESPOND_TRUE \
RESPONSE_PARSE(BankResponse(k200OK, "true")); \
CACHE_FOREVER
#define RESPOND_TRUE \
const auto resp = HttpResponse::newCustomHttpResponse("true"); \
CORS; \
CACHE_FOREVER \
callback(resp)
#define NAME_PARAM req->getParameter("name")