logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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

Author

       Johannes Plunien <plu@cpan.org>

Methods

is_watching
       •   Check if you are watching a repo

               GET /user/watched/:user/:repo

           Examples:

               my $w = Pithub::Repos::Watching->new;
               my $result = $w->is_watching(
                   repo => 'Pithub',
                   user => 'plu',
               );

   list_repos
       •   List repos being watched by a user

               GET /users/:user/watched

           Examples:

               my $w = Pithub::Repos::Watching->new;
               my $result = $w->list_repos( user => 'plu' );

       •   List repos being watched by the authenticated user

               GET /user/watched

           Examples:

               my $w = Pithub::Repos::Watching->new;
               my $result = $w->list_repos;

   list
       •   List watchers

               GET /repos/:user/:repo/watchers

           Examples:

               my $w = Pithub::Repos::Watching->new;
               my $result = $w->list(
                   user => 'plu',
                   repo => 'Pithub',
               );

   start_watching
       •   Watch a repo

               PUT /user/watched/:user/:repo

           Examples:

               my $w = Pithub::Repos::Watching->new;
               my $result = $w->start_watching(
                   user => 'plu',
                   repo => 'Pithub',
               );

   stop_watching
       •   Stop watching a repo

               DELETE /user/watched/:user/:repo

           Examples:

               my $w = Pithub::Repos::Watching->new;
               my $result = $w->stop_watching(
                   user => 'plu',
                   repo => 'Pithub',
               );

Name

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

Version

       version 0.01043

See Also