1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-18 15:05:08 +00:00

Adding fetching orgs

This commit is contained in:
VarMonke 2022-03-29 19:42:29 +05:30
parent 6c8e5cec0e
commit 45db6d5120
4 changed files with 23 additions and 5 deletions

View file

@ -24,6 +24,8 @@ USER_FOLLOWING_URL = USERS_URL + '/following'
#== repo urls ==#
REPOS_URL = BASE_URL + '/repos/{0}' # repos of a user
#REPO_URL = REPOS_URL + '/{1}' # a specific repo
REPO_URL = BASE_URL + '/repos/{0}/{1}' # a specific repo
REPO_URL = BASE_URL + '/repos/{0}/{1}' # a specific repo
#== org urls ==#
ORG_URL = BASE_URL + '/orgs/{0}'