mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 13:10:26 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			348 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			348 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package settings
 | 
						|
 | 
						|
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
 | 
						|
 | 
						|
type AdvancedAction struct {
 | 
						|
	actionutils.ParentAction
 | 
						|
}
 | 
						|
 | 
						|
func (this *AdvancedAction) Init() {
 | 
						|
	this.Nav("", "", "")
 | 
						|
}
 | 
						|
 | 
						|
func (this *AdvancedAction) RunGet(params struct{}) {
 | 
						|
	// 跳转到高级设置的第一个Tab
 | 
						|
	this.RedirectURL("/settings/database")
 | 
						|
}
 |