(name: string)
| 121 | * Clear authentication cookie using secure cookie options |
| 122 | */ |
| 123 | export function clearAuthCookie(name: string): string { |
| 124 | return createSecureCookie({ |
| 125 | name, |
| 126 | value: '', |
| 127 | maxAge: 0, |
| 128 | }); |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * Clear all auth cookies from response using consolidated approach |
no test coverage detected