(next http.Handler)
| 1101 | } |
| 1102 | |
| 1103 | func prepareNoCacheMiddleware(next http.Handler) http.Handler { |
| 1104 | return http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) { |
| 1105 | prepareNoCache(rw) |
| 1106 | next.ServeHTTP(rw, req) |
| 1107 | }) |
| 1108 | } |
| 1109 | |
| 1110 | // getOAuthRedirectURI returns the redirectURL that the upstream OAuth Provider will |
| 1111 | // redirect clients to once authenticated. |
nothing calls this directly
no test coverage detected