1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-14 21:24:59 +00:00

Add gitignore routes

This commit is contained in:
RGBCube 2022-06-27 13:26:15 +03:00
parent 7274c90f2d
commit 3bb3795dbf
3 changed files with 42 additions and 2327 deletions

View file

@ -61,7 +61,7 @@ class RateLimits(NamedTuple):
# Enterprise administration
# Gists DONE
# Git database
# Gitignore
# Gitignore DONE
# Interactions
# Issues
# Licenses DONE
@ -834,7 +834,7 @@ class HTTPClient:
# === LICENSES === #
async def get_commonly_used_licenses(self):
async def get_all_commonly_used_licenses(self):
return await self.request("GET", "/licenses")
async def get_license(self, *, license: str):
@ -842,3 +842,11 @@ class HTTPClient:
async def get_license_for_repository(self, *, owner: str, repo: str):
return await self.request("GET", f"/repos/{owner}/{repo}/license")
# === GITIGNORE === #
async def get_all_gitignore_templates(self):
return await self.request("GET", "/gitignore/templates")
async def get_gitignore_template(self, *, name: str):
return await self.request("GET", f"/gitignore/templates/{name}")