Files
EdgeAdmin/internal/web/actions/default/log/helper.go

18 lines
253 B
Go
Raw Normal View History

2020-09-13 20:37:07 +08:00
package log
import (
"github.com/iwind/TeaGo/actions"
"net/http"
)
type Helper struct {
}
func (this *Helper) BeforeAction(action *actions.ActionObject) {
if action.Request.Method != http.MethodGet {
return
}
action.Data["teaMenu"] = "log"
}