Files
snipe-it/app/config/permissions.php
T
2016-01-13 04:39:26 -08:00

35 lines
598 B
PHP
Executable File

<?php
return array(
'Global' => array(
array(
'permission' => 'superuser',
'label' => 'Super User',
),
),
'Admin' => array(
array(
'permission' => 'admin',
'label' => 'Admin Rights',
),
),
'Reporting' => array(
array(
'permission' => 'reports',
'label' => 'View Reports',
),
),
'Licenses' => array(
array(
'permission' => 'license_keys',
'label' => 'View License Keys',
),
),
);