Subject: | Allow listing of private repos |
Currently Net::GitHub::V2::Repositories->list() only lists public repos.
I'm using Net::GitHub to add and remove users for all my repos, most of
which are private.
I did s/return $self->get_json_to_obj/return
$self->get_json_to_obj_authed/ in the list method so it would enumerate
both public and private repos, but that's obviously super hacky. Maybe a
->list_all method, or an argument to ->list to specify you want both
public & private would be a good way to get the full list.
Thanks for your work on Net::GitHub, it's very helpful.