mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
b4e570358e
* build: include major in go.mod module directive * fix: xflags * revert: cobra changes * fix: mock doc
12 lines
214 B
Go
12 lines
214 B
Go
package server
|
|
|
|
import (
|
|
"github.com/valyala/fasthttp"
|
|
|
|
"github.com/authelia/authelia/v4/internal/middlewares"
|
|
)
|
|
|
|
func handleOPTIONS(ctx *middlewares.AutheliaCtx) {
|
|
ctx.SetStatusCode(fasthttp.StatusNoContent)
|
|
}
|