(r *http.Request, headers http.Header, conn *storage.Connection, user *models.User, authenticationMethod models.AuthenticationMethod, grantParams models.GrantParams)
| 297 | } |
| 298 | |
| 299 | func (a *API) issueRefreshToken(r *http.Request, headers http.Header, conn *storage.Connection, user *models.User, authenticationMethod models.AuthenticationMethod, grantParams models.GrantParams) (*tokens.AccessTokenResponse, error) { |
| 300 | return a.tokenService.IssueRefreshToken(r, headers, conn, user, authenticationMethod, grantParams) |
| 301 | } |
| 302 | |
| 303 | func (a *API) updateMFASessionAndClaims(r *http.Request, tx *storage.Connection, user *models.User, authenticationMethod models.AuthenticationMethod, grantParams models.GrantParams) (*tokens.AccessTokenResponse, error) { |
| 304 | ctx := r.Context() |
no test coverage detected