mirror of
https://github.com/Telecominfraproject/wlan-cloud-owprov.git
synced 2025-10-29 17:52:28 +00:00
21 lines
489 B
C++
21 lines
489 B
C++
//
|
|
// License type: BSD 3-Clause License
|
|
// License copy: https://github.com/Telecominfraproject/wlan-cloud-ucentralgw/blob/master/LICENSE
|
|
//
|
|
// Created by Stephane Bourque on 2021-03-04.
|
|
// Arilia Wireless Inc.
|
|
//
|
|
#include "Dashboard.h"
|
|
#include "framework/utils.h"
|
|
|
|
namespace OpenWifi {
|
|
void ProvisioningDashboard::Create() {
|
|
uint64_t Now = Utils::Now();
|
|
if(LastRun_==0 || (Now-LastRun_)>120) {
|
|
DB_.reset();
|
|
// Todo: call dashboard creation code.
|
|
LastRun_ = Now;
|
|
}
|
|
}
|
|
}
|