20 lines
467 B
Go
20 lines
467 B
Go
package handlers
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/clems4ever/authelia/internal/middlewares"
|
|
)
|
|
|
|
// LogoutPost is the handler logging out the user attached to the given cookie.
|
|
func LogoutPost(ctx *middlewares.AutheliaCtx) {
|
|
ctx.Logger.Tracef("Destroy session")
|
|
err := ctx.Providers.SessionProvider.DestroySession(ctx.RequestCtx)
|
|
|
|
if err != nil {
|
|
ctx.Error(fmt.Errorf("Unable to destroy session during logout: %s", err), operationFailedMessage)
|
|
}
|
|
|
|
ctx.ReplyOK()
|
|
}
|