Skip to content

Commit b75b082

Browse files
authored
Merge pull request #36 from Sheldenburg/bug/fix-names-in-settings
fix GH_SECRET
2 parents 1a6733e + e288145 commit b75b082

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/app/api/routes/login.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def github_oauth(session: SessionDep, code: str, response: Response):
215215
token_data = {
216216
"code": code,
217217
"client_id": settings.GH_CLIENT_ID,
218-
"client_secret": settings.GH_SECRET,
218+
"client_secret": settings.GH_CLIENT_SECRET,
219219
}
220220
headers = {"Accept": "application/json"}
221221

0 commit comments

Comments
 (0)