Fix app_project_id_map_name in GitHub App backend, not having a .json extension

Signed-off-by: magic_rb <richard@brezak.sk>
This commit is contained in:
magic_rb 2024-06-12 17:36:08 +02:00
parent eeb21e9ddd
commit 467b9164de
Failed to generate hash of commit

View file

@ -19,5 +19,5 @@ class AuthTypeApp(AuthType):
app_installation_token_map_name: Path = Path( app_installation_token_map_name: Path = Path(
"github-app-installation-token-map.json" "github-app-installation-token-map.json"
) )
app_project_id_map_name: Path = Path("github-app-project-id-map-name") app_project_id_map_name: Path = Path("github-app-project-id-map-name.json")
app_jwt_token_name: Path = Path("github-app-jwt-token") app_jwt_token_name: Path = Path("github-app-jwt-token")