Skip to content

Commit

Permalink
[AIDAPP-401]: Update the label used for People Administration to User…
Browse files Browse the repository at this point in the history
… Management in the navigation group (#380)
  • Loading branch information
kandarp-canyon authored Jan 7, 2025
1 parent ad9b214 commit 5b5ab97
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class PermissionResource extends Resource
{
protected static ?string $model = Permission::class;

protected static ?string $navigationGroup = 'People Administration';
protected static ?string $navigationGroup = 'User Management';

protected static ?int $navigationSort = 40;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class RoleResource extends Resource
{
protected static ?string $model = Role::class;

protected static ?string $navigationGroup = 'People Administration';
protected static ?string $navigationGroup = 'User Management';

protected static ?int $navigationSort = 30;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class DivisionResource extends Resource
{
protected static ?string $model = Division::class;

protected static ?string $navigationGroup = 'People Administration';
protected static ?string $navigationGroup = 'User Management';

protected static ?int $navigationSort = 60;

Expand Down
2 changes: 1 addition & 1 deletion app-modules/team/src/Filament/Resources/TeamResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class TeamResource extends Resource
{
protected static ?string $model = Team::class;

protected static ?string $navigationGroup = 'People Administration';
protected static ?string $navigationGroup = 'User Management';

protected static ?int $navigationSort = 20;

Expand Down
2 changes: 1 addition & 1 deletion app/Filament/Resources/SystemUserResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class SystemUserResource extends Resource
{
protected static ?string $model = SystemUser::class;

protected static ?string $navigationGroup = 'People Administration';
protected static ?string $navigationGroup = 'User Management';

protected static ?string $navigationLabel = 'Programmatic Users';

Expand Down
2 changes: 1 addition & 1 deletion app/Filament/Resources/UserResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class UserResource extends Resource
{
protected static ?string $model = User::class;

protected static ?string $navigationGroup = 'People Administration';
protected static ?string $navigationGroup = 'User Management';

protected static ?int $navigationSort = 10;

Expand Down
2 changes: 1 addition & 1 deletion app/Providers/Filament/AdminPanelProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public function panel(Panel $panel): Panel
->icon('heroicon-o-rocket-launch')
->collapsed(),
NavigationGroup::make()
->label('People Administration')
->label('User Management')
->icon('heroicon-o-users')
->collapsed(),
NavigationGroup::make()
Expand Down

0 comments on commit 5b5ab97

Please sign in to comment.