mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-31 03:07:34 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			874 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			874 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package router
 | |
| 
 | |
| import (
 | |
| 	v1 "github.com/1Panel-dev/1Panel/backend/app/api/v1"
 | |
| 	"github.com/1Panel-dev/1Panel/backend/middleware"
 | |
| 
 | |
| 	"github.com/gin-gonic/gin"
 | |
| )
 | |
| 
 | |
| type CommandRouter struct{}
 | |
| 
 | |
| func (s *CommandRouter) InitCommandRouter(Router *gin.RouterGroup) {
 | |
| 	cmdRouter := Router.Group("commands").
 | |
| 		Use(middleware.JwtAuth()).
 | |
| 		Use(middleware.SessionAuth()).
 | |
| 		Use(middleware.PasswordExpired())
 | |
| 	withRecordRouter := Router.Group("commands").
 | |
| 		Use(middleware.JwtAuth()).
 | |
| 		Use(middleware.SessionAuth()).
 | |
| 		Use(middleware.PasswordExpired()).
 | |
| 		Use(middleware.OperationRecord())
 | |
| 	baseApi := v1.ApiGroupApp.BaseApi
 | |
| 	{
 | |
| 		withRecordRouter.POST("", baseApi.CreateCommand)
 | |
| 		withRecordRouter.POST("/del", baseApi.DeleteCommand)
 | |
| 		withRecordRouter.PUT(":id", baseApi.UpdateCommand)
 | |
| 		cmdRouter.POST("/search", baseApi.SearchCommand)
 | |
| 		cmdRouter.GET("", baseApi.ListCommand)
 | |
| 	}
 | |
| }
 |