mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 05:00:25 +08:00 
			
		
		
		
	
		
			
	
	
		
			24 lines
		
	
	
		
			747 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			24 lines
		
	
	
		
			747 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| 
								 | 
							
								package usernodes
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import (
							 | 
						||
| 
								 | 
							
									"github.com/TeaOSLab/EdgeAdmin/internal/configloaders"
							 | 
						||
| 
								 | 
							
									"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/settings/settingutils"
							 | 
						||
| 
								 | 
							
									"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/settings/user-nodes/node"
							 | 
						||
| 
								 | 
							
									"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
							 | 
						||
| 
								 | 
							
									"github.com/iwind/TeaGo"
							 | 
						||
| 
								 | 
							
								)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								func init() {
							 | 
						||
| 
								 | 
							
									TeaGo.BeforeStart(func(server *TeaGo.Server) {
							 | 
						||
| 
								 | 
							
										server.
							 | 
						||
| 
								 | 
							
											Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeSetting)).
							 | 
						||
| 
								 | 
							
											Helper(NewHelper()).
							 | 
						||
| 
								 | 
							
											Helper(settingutils.NewAdvancedHelper("userNodes")).
							 | 
						||
| 
								 | 
							
											Prefix("/settings/userNodes").
							 | 
						||
| 
								 | 
							
											Get("", new(IndexAction)).
							 | 
						||
| 
								 | 
							
											GetPost("/node/createPopup", new(node.CreatePopupAction)).
							 | 
						||
| 
								 | 
							
											Post("/delete", new(DeleteAction)).
							 | 
						||
| 
								 | 
							
											EndAll()
							 | 
						||
| 
								 | 
							
									})
							 | 
						||
| 
								 | 
							
								}
							 |