Files
archived-wlan-cloud-owprov/src/RESTAPI/RESTAPI_managementRole_list_handler.cpp
2022-02-25 22:26:08 -08:00

16 lines
403 B
C++

//
// Created by stephane bourque on 2021-08-26.
//
#include "framework/MicroService.h"
#include "RESTAPI_managementRole_list_handler.h"
#include "RESTObjects/RESTAPI_ProvObjects.h"
#include "StorageService.h"
#include "RESTAPI/RESTAPI_db_helpers.h"
namespace OpenWifi{
void RESTAPI_managementRole_list_handler::DoGet() {
return ListHandler<ManagementRoleDB>("roles", DB_, *this);
}
}