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::Repos::Collaborators - Github v3 Repo Collaborators API

Author

       Johannes Plunien <plu@cpan.org>

Methods

add
       •   Add collaborator

               PUT /repos/:user/:repo/collaborators/:user

           Examples:

               my $c = Pithub::Repos::Collaborators->new;
               my $result = $c->add(
                   user         => 'plu',
                   repo         => 'Pithub',
                   collaborator => 'rbo',
               );

   is_collaborator
       •   Get

               GET /repos/:user/:repo/collaborators/:user

           Examples:

               my $c = Pithub::Repos::Collaborators->new;
               my $result = $c->is_collaborator(
                   user         => 'plu',
                   repo         => 'Pithub',
                   collaborator => 'rbo',
               );

               if ( $result->is_success ) {
                   print "rbo is added as collaborator to Pithub\n";
               }
               elsif ( $result->code == 404 ) {
                   print "rbo is not added as collaborator to Pithub\n";
               }

   list
       •   List

               GET /repos/:user/:repo/collaborators

           Examples:

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

   remove
       •   Remove collaborator

               DELETE /repos/:user/:repo/collaborators/:user

           Examples:

               my $c = Pithub::Repos::Collaborators->new;
               my $result = $c->remove(
                   user         => 'plu',
                   repo         => 'Pithub',
                   collaborator => 'rbo',
               );

Name

       Pithub::Repos::Collaborators - Github v3 Repo Collaborators API

Version

       version 0.01043

See Also