mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-03-22 10:25:02 -05:00
Changed some descriptions of the admin tools for Miraak. Aded some more Permissions and added a moderator role.
23 lines
583 B
PHP
23 lines
583 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 FileManagerController extends AdminToolController
|
|
{
|
|
protected static string $name = 'Pak Manager';
|
|
|
|
protected static string $description = 'Deploy Pak Updates for the Launcher';
|
|
protected static string $iconComponent = 'icons.file-manager';
|
|
|
|
protected static Permissions $neededPermission = Permissions::FILE_UPLOAD;
|
|
|
|
public function index()
|
|
{
|
|
return view('admin.tools.game-news');
|
|
}
|
|
}
|