history.go 238 B

12345678910111213
  1. package config
  2. import (
  3. "github.com/0xJacky/Nginx-UI/model"
  4. "github.com/gin-gonic/gin"
  5. "github.com/uozi-tech/cosy"
  6. )
  7. func GetConfigHistory(c *gin.Context) {
  8. cosy.Core[model.ConfigBackup](c).
  9. SetEqual("filepath").
  10. PagingList()
  11. }