This commit is contained in:
Dennis Eichhorn 2024-04-07 17:31:42 +00:00
parent 01b0ca9d52
commit ae28875931
2 changed files with 7 additions and 1 deletions

View File

@ -22,6 +22,7 @@ return [
[ [
'dest' => '\Modules\Monitoring\Controller\BackendController:viewMonitoringGeneral', 'dest' => '\Modules\Monitoring\Controller\BackendController:viewMonitoringGeneral',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
'active' => true,
'permission' => [ 'permission' => [
'module' => BackendController::NAME, 'module' => BackendController::NAME,
'type' => PermissionType::READ, 'type' => PermissionType::READ,
@ -33,6 +34,7 @@ return [
[ [
'dest' => '\Modules\Monitoring\Controller\BackendController:viewStats', 'dest' => '\Modules\Monitoring\Controller\BackendController:viewStats',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
'active' => true,
'permission' => [ 'permission' => [
'module' => BackendController::NAME, 'module' => BackendController::NAME,
'type' => PermissionType::READ, 'type' => PermissionType::READ,
@ -44,6 +46,7 @@ return [
[ [
'dest' => '\Modules\Monitoring\Controller\BackendController:viewMonitoringLogList', 'dest' => '\Modules\Monitoring\Controller\BackendController:viewMonitoringLogList',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
'active' => true,
'permission' => [ 'permission' => [
'module' => BackendController::NAME, 'module' => BackendController::NAME,
'type' => PermissionType::READ, 'type' => PermissionType::READ,
@ -55,6 +58,7 @@ return [
[ [
'dest' => '\Modules\Monitoring\Controller\BackendController:viewMonitoringLogEntry', 'dest' => '\Modules\Monitoring\Controller\BackendController:viewMonitoringLogEntry',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
'active' => true,
'permission' => [ 'permission' => [
'module' => BackendController::NAME, 'module' => BackendController::NAME,
'type' => PermissionType::READ, 'type' => PermissionType::READ,
@ -66,6 +70,7 @@ return [
[ [
'dest' => '\Modules\Monitoring\Controller\BackendController:viewMonitoringSecurityDashboard', 'dest' => '\Modules\Monitoring\Controller\BackendController:viewMonitoringSecurityDashboard',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
'active' => true,
'permission' => [ 'permission' => [
'module' => BackendController::NAME, 'module' => BackendController::NAME,
'type' => PermissionType::READ, 'type' => PermissionType::READ,
@ -77,6 +82,7 @@ return [
[ [
'dest' => '\Modules\Monitoring\Controller\BackendController:viewMonitoringSecurityFileList', 'dest' => '\Modules\Monitoring\Controller\BackendController:viewMonitoringSecurityFileList',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
'active' => true,
'permission' => [ 'permission' => [
'module' => BackendController::NAME, 'module' => BackendController::NAME,
'type' => PermissionType::READ, 'type' => PermissionType::READ,

View File

@ -17,7 +17,7 @@ namespace Modules\Monitoring\Models;
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory; use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
/** /**
* Item mapper class. * ImpressionState mapper class.
* *
* @package Modules\Monitoring\Models * @package Modules\Monitoring\Models
* @license OMS License 2.0 * @license OMS License 2.0