Started integration of css changes from uikit

This commit is contained in:
Pax1601
2023-02-26 10:16:45 +01:00
parent 2350bc499a
commit 8dee4db238
6 changed files with 57 additions and 19 deletions

View File

@@ -75,7 +75,7 @@ void Server::handle_get(http_request request)
/* Get the logs from the logger */
auto logs = json::value::object();
logsToJSON(logs); // By reference, for thread safety
getLogsJSON(logs); // By reference, for thread safety
answer[L"airbases"] = airbasesData;
answer[L"bullseye"] = bullseyeData;

View File

@@ -3,4 +3,4 @@
void DllExport log(const std::string& sMessage);
void DllExport log(const std::wstring& sMessage);
void DllExport logsToJSON(json::value& json);
void DllExport getLogsJSON(json::value& json);

View File

@@ -14,7 +14,7 @@ void log(const wstring& message)
LOGGER->log(message);
}
void logsToJSON(json::value& json)
void getLogsJSON(json::value& json)
{
LOGGER->toJSON(json);
}