Pithub::Issues::Comments(3pm) | User Contributed Perl Documentation | Pithub::Issues::Comments(3pm) |
Pithub::Issues::Comments - Github v3 Issue Comments API
version 0.01040
POST /repos/:user/:repo/issues/:id/comments
Examples:
my $c = Pithub::Issues::Comments->new; my $result = $c->create( repo => 'Pithub', user => 'plu', issue_id => 1, data => { body => 'some comment' } );
DELETE /repos/:user/:repo/issues/comments/:id
Examples:
my $c = Pithub::Issues::Comments->new; my $result = $c->delete( repo => 'Pithub', user => 'plu', comment_id => 1, );
GET /repos/:user/:repo/issues/comments/:id
Examples:
my $c = Pithub::Issues::Comments->new; my $result = $c->get( repo => 'Pithub', user => 'plu', comment_id => 1, );
GET /repos/:user/:repo/issues/:id/comments
Examples:
my $c = Pithub::Issues::Comments->new; my $result = $c->list( repo => 'Pithub', user => 'plu', issue_id => 1, );
PATCH /repos/:user/:repo/issues/comments/:id
Examples:
my $c = Pithub::Issues::Comments->new; my $result = $c->update( repo => 'Pithub', user => 'plu', comment_id => 1, data => { body => 'some comment' }, );
Johannes Plunien <plu@cpan.org>
This software is copyright (c) 2011 by Johannes Plunien.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2022-10-04 | perl v5.34.0 |