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::Keys - Github v3 Repo Keys API

Author

       Johannes Plunien <plu@cpan.org>

Methods

create
       •   Create

               POST /repos/:user/:repo/keys

           Examples:

               my $k = Pithub::Repos::Keys->new;
               my $result = $k->create(
                   user => 'plu',
                   repo => 'Pithub',
                   data => {
                       title => 'some key',
                       key   => 'ssh-rsa AAA...',
                   },
               );

   delete
       •   Delete

               DELETE /repos/:user/:repo/keys/:id

           Examples:

               my $k = Pithub::Repos::Keys->new;
               my $result = $k->delete(
                   user   => 'plu',
                   repo   => 'Pithub',
                   key_id => 1,
               );

   get
       •   Get

               GET /repos/:user/:repo/keys/:id

           Examples:

               my $k = Pithub::Repos::Keys->new;
               my $result = $k->get(
                   user   => 'plu',
                   repo   => 'Pithub',
                   key_id => 1,
               );

   list
       •   List

               GET /repos/:user/:repo/keys

           Examples:

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

Name

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

Version

       version 0.01043

See Also