mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
850 B
29 lines
850 B
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 BackupRouter struct{}
|
|
|
|
func (s *BackupRouter) InitBackupRouter(Router *gin.RouterGroup) {
|
|
baRouter := Router.Group("backups").
|
|
Use(middleware.JwtAuth()).
|
|
Use(middleware.SessionAuth()).
|
|
Use(middleware.PasswordExpired())
|
|
baseApi := v1.ApiGroupApp.BaseApi
|
|
{
|
|
baRouter.GET("/search", baseApi.ListBackup)
|
|
baRouter.POST("/buckets", baseApi.ListBuckets)
|
|
baRouter.POST("", baseApi.CreateBackup)
|
|
baRouter.POST("/del", baseApi.DeleteBackup)
|
|
baRouter.POST("/update", baseApi.UpdateBackup)
|
|
baRouter.POST("/record/search", baseApi.SearchBackupRecords)
|
|
baRouter.POST("/record/download", baseApi.DownloadRecord)
|
|
baRouter.POST("/record/del", baseApi.DeleteBackupRecord)
|
|
}
|
|
}
|