mirror of
https://github.com/Telecominfraproject/wlan-cloud-owprov.git
synced 2026-03-20 03:40:31 +00:00
15 lines
376 B
C++
15 lines
376 B
C++
//
|
|
// Created by stephane bourque on 2021-08-26.
|
|
//
|
|
|
|
#include "RESTAPI_managementPolicy_list_handler.h"
|
|
|
|
#include "RESTObjects/RESTAPI_ProvObjects.h"
|
|
#include "StorageService.h"
|
|
#include "RESTAPI/RESTAPI_db_helpers.h"
|
|
|
|
namespace OpenWifi{
|
|
void RESTAPI_managementPolicy_list_handler::DoGet() {
|
|
return ListHandler<PolicyDB>("managementPolicies", DB_, *this);
|
|
}
|
|
} |