From b1711c9bc84a99f9486d22ad6fa572688e2caaec Mon Sep 17 00:00:00 2001 From: Dedan Date: Fri, 12 Apr 2024 12:17:02 +0300 Subject: [PATCH] Changes to files: Entities/Gateway.php Entities/Payment.php --- Entities/Gateway.php | 2 +- Entities/Payment.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Entities/Gateway.php b/Entities/Gateway.php index b9bf110..2217d9d 100755 --- a/Entities/Gateway.php +++ b/Entities/Gateway.php @@ -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; diff --git a/Entities/Payment.php b/Entities/Payment.php index bef33c0..be933b6 100755 --- a/Entities/Payment.php +++ b/Entities/Payment.php @@ -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;