Skip to content

Commit

Permalink
Changes to files: Entities/Gateway.php
Browse files Browse the repository at this point in the history
Entities/Payment.php
  • Loading branch information
dedanirungu committed Apr 12, 2024
1 parent 1d62b9e commit b1711c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Entities/Gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,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/Payment.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,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 b1711c9

Please sign in to comment.