mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-10-17 21:50:09 +02:00
Extended the module, created CLI commands showing available permissions and restrictions, added a sample configuration.php to the monitoring module. refs #4108
9 lines
348 B
PHP
9 lines
348 B
PHP
<?php
|
|
|
|
// TODO: We need to define a useful permission set for this module, the
|
|
// list provided here is just an example
|
|
$this->providePermission('commands/all', 'Allow to send all commands');
|
|
$this->providePermission('commands/safe', 'Allow to to send a subset of "safe" commands');
|
|
$this->providePermission('log', 'Allow full log access');
|
|
|