NAME

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

VERSION

version 0.01001

METHODS

add

  • Add collaborator

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

Examples:

$result = $p->repos->collaborators->add(
    user         => 'plu',
    repo         => 'Pithub',
    collaborator => 'rbo',
);

is_collaborator

  • Get

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

Examples:

$result = $p->repos->collaborators->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:

$result = $p->repos->collaborators->list(
    user => 'plu',
    repo => 'Pithub',
);

remove

  • Remove collaborator

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

Examples:

$result = $p->repos->collaborators->remove(
    user         => 'plu',
    repo         => 'Pithub',
    collaborator => 'rbo',
);

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.