12345678910111213 |
- <?php namespace Manage\Api;
- use Dever;
- use Manage\Lib\Auth;
- class Admin extends Auth
- {
- public function info()
- {
- $this->user['username'] = '1';
- $this->user['roles'] = ["Admin"];
- $this->user['permissions'] = ["read:system", "write:system", "delete:system"];
- return $this->user;
- }
- }
|