summaryrefslogtreecommitdiffstats
path: root/server/src/config.cpp
diff options
context:
space:
mode:
authorRutger Broekhoff2026-08-29 14:36:36 +0200
committerRutger Broekhoff2026-08-29 14:36:36 +0200
commit999d77a9bcfa90f002b0107ea5fc7e6abc51dd9c (patch)
tree15f2154ba28139ab87602bcb53f1451e5b8bfd6b /server/src/config.cpp
parent783ec01cbe2007c2ccf723635166c08f6d26abee (diff)
downloadroutemon-999d77a9bcfa90f002b0107ea5fc7e6abc51dd9c.tar.gz
routemon-999d77a9bcfa90f002b0107ea5fc7e6abc51dd9c.zip
Deployment preparations
Diffstat (limited to 'server/src/config.cpp')
-rw-r--r--server/src/config.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/src/config.cpp b/server/src/config.cpp
index 5c1a161..200b873 100644
--- a/server/src/config.cpp
+++ b/server/src/config.cpp
@@ -182,7 +182,8 @@ auto tag_invoke(
182 [](object_reader& r) -> http_server 182 [](object_reader& r) -> http_server
183 { 183 {
184 return { 184 return {
185 .lax_cors = r.expect_at<bool>("lax_cors"), 185 .allow_origins =
186 r.expect_at<std::vector<std::string>>("allow_origins"),
186 }; 187 };
187 }); 188 });
188} 189}