mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
1600e0f7da
* [CI] Add wsl linter * Implement wsl recommendations Co-authored-by: Clément Michaud <clement.michaud34@gmail.com>
18 lines
399 B
Go
18 lines
399 B
Go
package middlewares
|
|
|
|
import (
|
|
"github.com/authelia/authelia/internal/authentication"
|
|
)
|
|
|
|
// RequireFirstFactor check if user has enough permissions to execute the next handler.
|
|
func RequireFirstFactor(next RequestHandler) RequestHandler {
|
|
return func(ctx *AutheliaCtx) {
|
|
if ctx.GetSession().AuthenticationLevel < authentication.OneFactor {
|
|
ctx.ReplyForbidden()
|
|
return
|
|
}
|
|
|
|
next(ctx)
|
|
}
|
|
}
|