(r *http.Request)
| 26 | } |
| 27 | |
| 28 | func (p *TokenProvider) FromRequest(r *http.Request) (*workspaceapps.SignedToken, bool) { |
| 29 | return workspaceapps.FromRequest(r, p.TokenSigningKeycache) |
| 30 | } |
| 31 | |
| 32 | func (p *TokenProvider) Issue(ctx context.Context, rw http.ResponseWriter, r *http.Request, issueReq workspaceapps.IssueTokenRequest) (*workspaceapps.SignedToken, string, bool) { |
| 33 | appReq := issueReq.AppRequest.Normalize() |
nothing calls this directly
no test coverage detected