update ENV
All checks were successful
Build And Test / build-and-push (push) Successful in 3m17s

This commit is contained in:
2025-10-13 14:34:52 +09:00
parent 96e2a763c7
commit 017cf265ce
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ from .models import AnsibleTask
def get_ssh_key_from_auth_server(access_token: str) -> str:
url = settings.AUTH_VERIFY_URL + "/api/auth/ssh-key/view/"
url = settings.AUTH_APP_URL + "/api/auth/ssh-key/view/"
print(url)
headers = {"Authorization": f"Bearer {access_token}"}
response = requests.get(url, headers=headers)