mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 20:40:26 +08:00
19 lines
434 B
Go
19 lines
434 B
Go
// Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package security
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
|
|
)
|
|
|
|
type DismissXFFPromptAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *DismissXFFPromptAction) RunPost(params struct{}) {
|
|
helpers.DisableXFFPrompt()
|
|
|
|
this.Success()
|
|
}
|