mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
828f565290
This is going to be the v4. Expected improvements: - More reliable due to static typing. - Bump of performance. - Improvement of logging. - Authelia can be shipped as a single binary. - Will likely work on ARM architecture.
20 lines
457 B
Go
20 lines
457 B
Go
package handlers
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/clems4ever/authelia/middlewares"
|
|
)
|
|
|
|
// LogoutPost is the handler logging out the user attached to the given cookie.
|
|
func LogoutPost(ctx *middlewares.AutheliaCtx) {
|
|
ctx.Logger.Debug("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()
|
|
}
|