mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-04-03 08:15:21 -05:00
Changed some descriptions of the admin tools for Miraak. Aded some more Permissions and added a moderator role.
19 lines
459 B
PHP
19 lines
459 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Web\Admin\Tools;
|
|
|
|
use App\Enums\Auth\Permissions;
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Http\Request;
|
|
|
|
class LogViewerController extends AdminToolController
|
|
{
|
|
protected static string $name = 'Logs';
|
|
|
|
protected static string $description = 'View Backend Logs';
|
|
|
|
protected static string $iconComponent = 'icons.logs';
|
|
|
|
protected static Permissions $neededPermission = Permissions::VIEW_LOG;
|
|
}
|