feat: Add users endpoint

This commit is contained in:
Michael Gerdemann
2020-01-19 16:10:21 +01:00
parent 5c2450116b
commit 53c5c232d2
5 changed files with 259 additions and 15 deletions

View File

@ -10,6 +10,7 @@ use Avency\Gitea\Endpoint\Miscellaneous;
use Avency\Gitea\Endpoint\Organizations;
use Avency\Gitea\Endpoint\Repositories;
use Avency\Gitea\Endpoint\User;
use Avency\Gitea\Endpoint\Users;
use Exception;
use Psr\Http\Message\ResponseInterface;
@ -21,6 +22,7 @@ use Psr\Http\Message\ResponseInterface;
* @method Organizations organizations()
* @method Repositories repositories()
* @method User user()
* @method Users users()
*/
class Client
{