Scroll to navigation

Pithub::Issues::Assignees(3pm) User Contributed Perl Documentation Pithub::Issues::Assignees(3pm)

NAME

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

VERSION

version 0.01039

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',
    );
    

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.

2022-08-12 perl v5.34.0