mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 20:40:26 +08:00
24 lines
387 B
Go
24 lines
387 B
Go
package groups
|
|
|
|
import (
|
|
"github.com/iwind/TeaGo/actions"
|
|
"net/http"
|
|
)
|
|
|
|
type Helper struct {
|
|
}
|
|
|
|
func NewHelper() *Helper {
|
|
return &Helper{}
|
|
}
|
|
|
|
func (this *Helper) BeforeAction(action *actions.ActionObject) {
|
|
if action.Request.Method != http.MethodGet {
|
|
return
|
|
}
|
|
|
|
action.Data["teaMenu"] = "servers"
|
|
action.Data["mainTab"] = "component"
|
|
action.Data["secondMenuItem"] = "group"
|
|
}
|