aboutsummaryrefslogtreecommitdiffstats
path: root/include/http_request.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/http_request.h')
-rw-r--r--include/http_request.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/http_request.h b/include/http_request.h
index 331bc80..24edb66 100644
--- a/include/http_request.h
+++ b/include/http_request.h
@@ -20,6 +20,7 @@ namespace crow
{
HTTPMethod method;
std::string url;
+ ci_map url_params;
ci_map headers;
std::string body;
@@ -30,8 +31,8 @@ namespace crow
{
}
- request(HTTPMethod method, std::string url, ci_map headers, std::string body)
- : method(method), url(std::move(url)), headers(std::move(headers)), body(std::move(body))
+ request(HTTPMethod method, std::string url, ci_map url_params, ci_map headers, std::string body)
+ : method(method), url(std::move(url)), url_params(std::move(url_params)), headers(std::move(headers)), body(std::move(body))
{
}