(app_id: int)
| 63 | |
| 64 | |
| 65 | def generate_jwt_token(app_id: int) -> str: |
| 66 | github_auth: Auth.AppAuth = Auth.AppAuth( |
| 67 | app_id=str(app_id), |
| 68 | private_key=settings.GITHUB_PEM, |
| 69 | ) |
| 70 | token = github_auth.create_jwt() |
| 71 | return token |
| 72 | |
| 73 | |
| 74 | def build_paginated_response( |
no outgoing calls
searching dependent graphs…