This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/src/Api/Jobs/GetUserJob.php

18 lines
228 B
PHP
Raw Normal View History

2014-05-04 12:45:26 +02:00
<?php
class GetUserJob extends AbstractUserJob
{
public function execute()
{
return $this->user;
}
public function requiresPrivilege()
{
return
[
Privilege::ViewUser,
Access::getIdentity($this->user)
];
}
}