logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Pithub::Issues::Comments - Github v3 Issue Comments API

Author

       Johannes Plunien <plu@cpan.org>

Methods

create
       •   Create a comment

               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
       •   Delete a 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
       •   Get a single comment

               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,
               );

   list
       •   List comments on an issue

               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,
               );

   update
       •   Edit a comment

               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' },
               );

Name

       Pithub::Issues::Comments - Github v3 Issue Comments API

Version

       version 0.01043

See Also