aboutsummaryrefslogtreecommitdiffstats
path: root/src/Response.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Response.cpp')
-rw-r--r--src/Response.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Response.cpp b/src/Response.cpp
index 050a537..d7006c9 100644
--- a/src/Response.cpp
+++ b/src/Response.cpp
@@ -10,7 +10,14 @@ Response::json Response::simple_response(std::string const &text, std::string co
Response::json Response::create_annotation(Reply::AnnotationType annotationType, std::string const &extra) {
json annotation(crow::json::type::Object);
annotation["type"] = Reply::GetStringAnnotationType(annotationType);
- annotation["extra"] = extra;
+ annotation["extra"] = create_text(extra);
+ return annotation;
+}
+
+Response::json Response::create_annotation(Reply::AnnotationType annotationType, std::vector<json> &&extra) {
+ json annotation(crow::json::type::Object);
+ annotation["type"] = Reply::GetStringAnnotationType(annotationType);
+ annotation["extra"] = std::move(extra);
return annotation;
}