mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 05:00:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			1007 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1007 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package admins
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/TeaOSLab/EdgeAdmin/internal/configloaders"
 | 
						|
	"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/admins/accesskeys"
 | 
						|
	"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
 | 
						|
	"github.com/iwind/TeaGo"
 | 
						|
)
 | 
						|
 | 
						|
func init() {
 | 
						|
	TeaGo.BeforeStart(func(server *TeaGo.Server) {
 | 
						|
		server.
 | 
						|
			Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeAdmin)).
 | 
						|
			Data("teaMenu", "admins").
 | 
						|
			Prefix("/admins").
 | 
						|
			Get("", new(IndexAction)).
 | 
						|
			GetPost("/createPopup", new(CreatePopupAction)).
 | 
						|
			GetPost("/update", new(UpdateAction)).
 | 
						|
			Post("/delete", new(DeleteAction)).
 | 
						|
			Get("/admin", new(AdminAction)).
 | 
						|
			Get("/otpQrcode", new(OtpQrcodeAction)).
 | 
						|
			Post("/options", new(OptionsAction)).
 | 
						|
 | 
						|
			// AccessKeys
 | 
						|
			Prefix("/admins/accessKeys").
 | 
						|
			Get("", new(accesskeys.IndexAction)).
 | 
						|
			GetPost("/createPopup", new(accesskeys.CreatePopupAction)).
 | 
						|
			Post("/delete", new(accesskeys.DeleteAction)).
 | 
						|
			Post("/updateIsOn", new(accesskeys.UpdateIsOnAction)).
 | 
						|
 | 
						|
 | 
						|
			EndAll()
 | 
						|
	})
 | 
						|
}
 |