mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 12:20:28 +08:00
18 lines
327 B
Go
18 lines
327 B
Go
|
|
package recover
|
||
|
|
|
||
|
|
import (
|
||
|
|
teaconst "github.com/TeaOSLab/EdgeAdmin/internal/const"
|
||
|
|
"github.com/iwind/TeaGo/actions"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Helper struct {
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *Helper) BeforeAction(actionPtr actions.ActionWrapper) (goNext bool) {
|
||
|
|
if !teaconst.IsRecoverMode {
|
||
|
|
actionPtr.Object().RedirectURL("/")
|
||
|
|
return false
|
||
|
|
}
|
||
|
|
return true
|
||
|
|
}
|