Pithub::Repos::Watching(3pm) | User Contributed Perl Documentation | Pithub::Repos::Watching(3pm) |
Pithub::Repos::Watching - Github v3 Repo Watching API
version 0.01040
GET /user/watched/:user/:repo
Examples:
my $w = Pithub::Repos::Watching->new; my $result = $w->is_watching( repo => 'Pithub', user => 'plu', );
GET /users/:user/watched
Examples:
my $w = Pithub::Repos::Watching->new; my $result = $w->list_repos( user => 'plu' );
GET /user/watched
Examples:
my $w = Pithub::Repos::Watching->new; my $result = $w->list_repos;
GET /repos/:user/:repo/watchers
Examples:
my $w = Pithub::Repos::Watching->new; my $result = $w->list( user => 'plu', repo => 'Pithub', );
PUT /user/watched/:user/:repo
Examples:
my $w = Pithub::Repos::Watching->new; my $result = $w->start_watching( user => 'plu', repo => 'Pithub', );
DELETE /user/watched/:user/:repo
Examples:
my $w = Pithub::Repos::Watching->new; my $result = $w->stop_watching( user => 'plu', repo => 'Pithub', );
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 |