I need to list all repos of an organisation including private ones. I am the owner of that org and therefor of all repos in that org.
I tried
curl -H "Authorization: Bearer THEACCESSTOKEN" \
"https://try.gitea.com/api/v1/orgs/THE_ORGA_NAME/repos"
but that only returns public repos. How do I also get the private ones?
Since there are lost of private repos making them public by hand is discuraged…
bye
GN