reasign the OAuth2 event fields to make sure that the event always have the latest OAuth2 state

This commit is contained in:
Gani Georgiev 2023-01-15 17:14:41 +02:00
parent 36ab3fd162
commit fd97732d4d
1 changed files with 3 additions and 0 deletions

View File

@ -270,6 +270,9 @@ func (api *recordAuthApi) authWithOAuth2(c echo.Context) error {
return NewBadRequestError("Failed to authenticate.", err) return NewBadRequestError("Failed to authenticate.", err)
} }
e.Record = data.Record
e.OAuth2User = data.OAuth2User
return api.authResponse(e.HttpContext, e.Record, e.OAuth2User) return api.authResponse(e.HttpContext, e.Record, e.OAuth2User)
}) })
} }