u
This commit is contained in:
@@ -4,8 +4,8 @@
|
||||
#include "../queries/category_list.hpp"
|
||||
|
||||
void handle_category(HttpRequest& req, HttpResponse& resp, RouteContext& /*ctx*/) {
|
||||
int64_t cursor = std::stoll(req.get_query_param("lastChangedCategory", "0"));
|
||||
int limit = std::stoi(req.get_query_param("limit", "20"));
|
||||
int64_t cursor = req.get_query_int64("lastChangedCategory");
|
||||
int limit = req.get_query_int("limit", 20);
|
||||
auto categories = get_category_list(cursor, limit);
|
||||
resp.send_json(200, categories);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user