Files
UNIT3D-Community-Edition/config/configmanager.php
HDVinnie bb68df00f5 (Update) Groups System 🚀
- add is_owner
- update middlewares
- lock Backup Manager, Config Manager, Laravel Log Viewer to is_owner groups only.
- update configs
2019-02-21 09:27:50 -05:00

34 lines
856 B
PHP

<?php
/**
* NOTICE OF LICENSE.
*
* UNIT3D is open-sourced software licensed under the GNU General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D
*
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
* @author HDVinnie
*/
return [
/*
|--------------------------------------------------------------------------
| Routes group config
|--------------------------------------------------------------------------
|
| The default group settings for the translations routes.
|
*/
'route' => [
'prefix' => 'staff_dashboard/config_settings',
'name' => 'configmanager',
'middleware' => [
'web',
'auth',
'owner',
],
],
];