(r *http.Request)
| 86 | } |
| 87 | |
| 88 | func (p *DBTokenProvider) FromRequest(r *http.Request) (*SignedToken, bool) { |
| 89 | return FromRequest(r, p.Keycache) |
| 90 | } |
| 91 | |
| 92 | func (p *DBTokenProvider) Issue(ctx context.Context, rw http.ResponseWriter, r *http.Request, issueReq IssueTokenRequest) (*SignedToken, string, bool) { |
| 93 | // nolint:gocritic // We need to make a number of database calls. Setting a system context here |
nothing calls this directly
no test coverage detected