mirror of
https://github.com/grocy/grocy.git
synced 2026-04-07 21:26:16 +02:00
14 lines
173 B
PHP
14 lines
173 B
PHP
<?php
|
|
|
|
|
|
namespace Grocy\Controllers\Users;
|
|
|
|
|
|
class AllowedUser extends User
|
|
{
|
|
|
|
public function hasPermission(string $permission): bool
|
|
{
|
|
return true;
|
|
}
|
|
} |