Pithub::Issues::Assignees(3pm) | User Contributed Perl Documentation | Pithub::Issues::Assignees(3pm) |
Pithub::Issues::Assignees - Github v3 Issue Assignees API
version 0.01040
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"; }
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 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.
2022-10-04 | perl v5.34.0 |