mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralfms.git
synced 2026-03-20 03:40:59 +00:00
Refactoring project layout.
This commit is contained in:
18
src/RESTAPI/RESTAPI_deviceReportHandler.cpp
Normal file
18
src/RESTAPI/RESTAPI_deviceReportHandler.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
//
|
||||
// Created by stephane bourque on 2021-07-19.
|
||||
//
|
||||
|
||||
#include "RESTAPI_deviceReportHandler.h"
|
||||
#include "StorageService.h"
|
||||
#include "RESTAPI_FMSObjects.h"
|
||||
#include "Poco/JSON/Object.h"
|
||||
#include "Daemon.h"
|
||||
|
||||
namespace OpenWifi {
|
||||
void RESTAPI_deviceReportHandler::DoGet() {
|
||||
Daemon()->CreateDashboard();
|
||||
Poco::JSON::Object O;
|
||||
Daemon()->GetDashboard().to_json(O);
|
||||
ReturnObject(O);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user