:calls: `GET /users/{username}/installation `
(self, username: str)
| 323 | return self._get_installed_app(url=f"/repos/{owner}/{repo}/installation") |
| 324 | |
| 325 | def get_user_installation(self, username: str) -> Installation: |
| 326 | """ |
| 327 | :calls: `GET /users/{username}/installation <https://docs.github.com/en/rest/apps/apps#get-a-user-installation-for-the-authenticated-app>` |
| 328 | """ |
| 329 | username = urllib.parse.quote(username) |
| 330 | return self._get_installed_app(url=f"/users/{username}/installation") |
| 331 | |
| 332 | def get_app_installation(self, installation_id: int) -> Installation: |
| 333 | """ |
no test coverage detected