We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09fe49a commit d792492Copy full SHA for d792492
1 file changed
pkg/server/server.go
@@ -285,6 +285,7 @@ func (s *Server) HTTPHandler() http.Handler {
285
handleFunc(authLogoutEndpoint, allowMethod(http.MethodPost, s.handleLogout))
286
handleFunc(AuthLoginCallbackEndpoint, s.Authenticator.CallbackFunc(fn))
287
handle(requestTokenEndpoint, authHandler(s.handleClusterTokenURL))
288
+ // TODO: only add the following in case the auth type is openshift?
289
handleFunc(deleteOpenshiftTokenEndpoint, allowMethod(http.MethodPost, authHandlerWithUser(s.handleOpenShiftTokenDeletion)))
290
}
291
0 commit comments