NAME
WWW::Gitea::API::Misc - Instance-level Gitea endpoints (version, current user)
VERSION
version 0.001
SYNOPSIS
my $version = $gitea->misc->version; # "1.22.0"
my $me = $gitea->misc->current_user; # WWW::Gitea::User
DESCRIPTION
Controller for instance-level Gitea endpoints that are not tied to a specific repository or organization. Reached via $gitea->misc.
client
The parent WWW::Gitea client providing HTTP transport.
openapi_operations
Pre-computed operation table (operationId → {method, path}).
version
my $v = $gitea->misc->version;
Returns the Gitea server version string.
current_user
my $me = $gitea->misc->current_user;
Returns the authenticated user as a WWW::Gitea::User.
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.