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::Assignees - Github v3 Issue Assignees API

Author

       Johannes Plunien <plu@cpan.org>

Methods

check
       •   You may also check to see if a particular user is an assignee for a repository.

               GET /repos/:user/:repo/assignees/:assignee

           If  the  given assignee login belongs to an assignee for the repository, a 204 header with no content
           is returned.

           Examples:

               my $c      = Pithub::Issues::Assignees->new;
               my $result = $c->check(
                   repo     => 'Pithub',
                   user     => 'plu',
                   assignee => 'plu',
               );
               if ( $result->success ) {
                   print "plu is an assignee for the repo plu/Pithub.git";
               }

   list
       •   This call lists all the available assignees (owner + collaborators) to which issues may be assigned.

               GET /repos/:user/:repo/assignees

           Examples:

               my $c      = Pithub::Issues::Assignees->new;
               my $result = $c->list(
                   repo => 'Pithub',
                   user => 'plu',
               );

Name

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

Version

       version 0.01043

See Also