Pithub::Issues::Assignees - Github v3 Issue Assignees API
- •
- 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";
}
- •
- 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',
);
Johannes Plunien <plu@cpan.org>
This software is copyright (c) 2011-2019 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.