Skip to content

Commit

Permalink
Changes to files: Entities/Phone.php
Browse files Browse the repository at this point in the history
Entities/Provider.php
  • Loading branch information
dedanirungu committed Apr 12, 2024
1 parent 530055c commit ecf690c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Entities/Phone.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function rights(): array
$rights = parent::rights();

$rights['staff'] = ['view' => true];
$rights['registered'] = ['view' => true];
$rights['registered'] = [];
$rights['guest'] = [];

return $rights;
Expand Down
2 changes: 1 addition & 1 deletion Entities/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function rights(): array
$rights = parent::rights();

$rights['staff'] = ['view' => true];
$rights['registered'] = ['view' => true];
$rights['registered'] = [];
$rights['guest'] = [];

return $rights;
Expand Down

0 comments on commit ecf690c

Please sign in to comment.