(s string)
| 605 | } |
| 606 | |
| 607 | func strOrNil(s string) *string { |
| 608 | if s == "" { |
| 609 | return nil |
| 610 | } |
| 611 | return &s |
| 612 | } |
| 613 | |
| 614 | // Logout handles GET /api/v1/auth/oidc/logout. |
| 615 | func (h *OidcHandler) Logout(w http.ResponseWriter, r *http.Request) { |
no outgoing calls
no test coverage detected