NAME
Pithub::Issues::Comments - Github v3 Issue Comments API
VERSION
version 0.01001
METHODS
create
Create a comment
POST /repos/:user/:repo/issues/:id/comments
Examples:
$result = $p->issues->comments->create(
repo => 'Pithub',
user => 'plu',
issue_id => 1,
data => { body => 'some comment' }
);
delete
Delete a comment
DELETE /repos/:user/:repo/issues/comments/:id
Examples:
$result = $p->issues->comments->delete(
repo => 'Pithub',
user => 'plu',
comment_id => 1,
);
get
Get a single comment
GET /repos/:user/:repo/issues/comments/:id
Examples:
$result = $p->issues->comments->get(
repo => 'Pithub',
user => 'plu',
comment_id => 1,
);
list
List comments on an issue
GET /repos/:user/:repo/issues/:id/comments
Examples:
$result = $p->issues->comments->list(
repo => 'Pithub',
user => 'plu',
issue_id => 1,
);
update
Edit a comment
PATCH /repos/:user/:repo/issues/comments/:id
Examples:
$result = $p->issues->comments->update(
repo => 'Pithub',
user => 'plu',
comment_id => 1,
data => { body => 'some comment' },
);
AUTHOR
Johannes Plunien <plu@cpan.org>
COPYRIGHT AND LICENSE
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.