mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 05:00:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package waf
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/servers/components/componentutils"
 | 
						|
	"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
 | 
						|
	"github.com/iwind/TeaGo"
 | 
						|
)
 | 
						|
 | 
						|
func init() {
 | 
						|
	TeaGo.BeforeStart(func(server *TeaGo.Server) {
 | 
						|
		server.
 | 
						|
			Helper(helpers.NewUserMustAuth()).
 | 
						|
			Helper(NewHelper()).
 | 
						|
			Helper(componentutils.NewComponentHelper()).
 | 
						|
			Prefix("/servers/components/waf").
 | 
						|
			Get("", new(IndexAction)).
 | 
						|
			GetPost("/createPopup", new(CreatePopupAction)).
 | 
						|
			Post("/delete", new(DeleteAction)).
 | 
						|
			Get("/policy", new(PolicyAction)).
 | 
						|
			Get("/groups", new(GroupsAction)).
 | 
						|
			Get("/sets", new(SetsAction)).
 | 
						|
			Get("/log", new(LogAction)).
 | 
						|
			GetPost("/update", new(UpdateAction)).
 | 
						|
			GetPost("/test", new(TestAction)).
 | 
						|
			GetPost("/export", new(ExportAction)).
 | 
						|
			GetPost("/import", new(ImportAction)).
 | 
						|
			Post("/updateGroupOn", new(UpdateGroupOnAction)).
 | 
						|
			Post("/deleteGroup", new(DeleteGroupAction)).
 | 
						|
			GetPost("/ipadmin", new(IpadminAction)).
 | 
						|
			GetPost("/createGroupPopup", new(CreateGroupPopupAction)).
 | 
						|
			Post("/sortGroups", new(SortGroupsAction)).
 | 
						|
			EndAll()
 | 
						|
	})
 | 
						|
}
 |