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

16 lines
236 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()
{
2014-05-04 16:27:15 +02:00
return new Privilege(
2014-05-04 12:45:26 +02:00
Privilege::ViewUser,
2014-05-04 16:27:15 +02:00
Access::getIdentity($this->user));
2014-05-04 12:45:26 +02:00
}
}