This commit is contained in:
Doug Hoyte
2023-09-10 18:47:08 -04:00
parent c69b338402
commit 552e70e3b0
6 changed files with 71 additions and 0 deletions

View File

@ -293,6 +293,10 @@ HTTPResponse WebServer::generateReadResponse(lmdb::txn &txn, Decompressor &decom
} else if (u.path[0] == "favicon.ico") {
rawBody = std::string(oddbeanStatic__favicon_ico());
contentType = "image/x-icon";
} else if (u.path[0] == "login") {
body = tmpl::login(0);
} else if (u.path[0] == "about") {
body = tmpl::about(0);
}