mirror of
https://github.com/pelican-dev/panel.git
synced 2025-09-08 22:18:46 +02:00
Fix activityLog permission name (#1641)
This commit is contained in:
parent
a8241bf9f3
commit
5eff006843
@ -44,7 +44,7 @@ class Role extends BaseRole
|
||||
'health' => [
|
||||
'view',
|
||||
],
|
||||
'activity' => [
|
||||
'activityLog' => [
|
||||
'seeIps',
|
||||
],
|
||||
];
|
||||
|
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
DB::table('permissions')
|
||||
->where('name', 'seeIps activity')
|
||||
->update(['name' => 'seeIps activityLog']);
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
DB::table('permissions')
|
||||
->where('name', 'seeIps activityLog')
|
||||
->update(['name' => 'seeIps activity']);
|
||||
}
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user