mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 05:00:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			532 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			532 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package messages
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/TeaOSLab/EdgeAdmin/internal/configloaders"
 | 
						|
	"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
 | 
						|
	"github.com/iwind/TeaGo"
 | 
						|
)
 | 
						|
 | 
						|
func init() {
 | 
						|
	TeaGo.BeforeStart(func(server *TeaGo.Server) {
 | 
						|
		server.
 | 
						|
			Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeCommon)).
 | 
						|
			Helper(new(Helper)).
 | 
						|
			Prefix("/messages").
 | 
						|
			GetPost("", new(IndexAction)).
 | 
						|
			Post("/badge", new(BadgeAction)).
 | 
						|
			Post("/readAll", new(ReadAllAction)).
 | 
						|
			Post("/readPage", new(ReadPageAction)).
 | 
						|
			EndAll()
 | 
						|
	})
 | 
						|
}
 |