NAME

WWW::Gitea::Comment - Gitea issue/pull-request comment entity

VERSION

version 0.001

SYNOPSIS

my $comments = $gitea->issues->comments('getty', 'p5-www-gitea', 7);

for my $c (@$comments) {
    print $c->user_login, ": ", $c->body, "\n";
}

DESCRIPTION

Lightweight wrapper around the JSON returned for a Gitea comment. The raw decoded data is always available via "data".

data

Raw decoded JSON for the comment.

id

Numeric comment ID.

body

The comment text (Markdown).

html_url

Web URL of the comment.

created_at

ISO-8601 creation timestamp.

updated_at

ISO-8601 last-update timestamp.

user_login

Login name of the comment's author.

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.