NAME
WWW::Gitea::API::Users - Gitea users API (lookup and search)
VERSION
version 0.001
SYNOPSIS
my $user = $gitea->users->get('getty');
my @found = @{ $gitea->users->search(q => 'tor') };
DESCRIPTION
Controller for the Gitea users API. Reached via $gitea->users.
client
The parent WWW::Gitea client providing HTTP transport.
openapi_operations
Pre-computed operation table (operationId → {method, path}).
get
my $user = $gitea->users->get('getty');
Fetches a user by login name. Returns a WWW::Gitea::User.
search
my $users = $gitea->users->search(q => 'tor', limit => 10);
Searches users. Accepts the Gitea query parameters (q, uid, page, limit). Returns an ArrayRef of WWW::Gitea::User objects.
SEE ALSO
SUPPORT
Issues
Please report bugs and feature requests on GitHub at https://codeberg.org/getty/p5-www-gitea/issues.
CONTRIBUTING
Contributions are welcome! Please fork the repository and submit a pull request.
AUTHOR
Torsten Raudssus <torsten@raudssus.de> https://raudssus.de/
COPYRIGHT AND LICENSE
This software is copyright (c) 2026 by Torsten Raudssus.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.