openpdu/src/webui/backup_ui.go

19 lines
321 B
Go

package webui
import (
"path"
"git.openpdu.org/OpenPDU/openpdu/config"
"gopkg.in/macaron.v1"
)
func backupPage(ctx *macaron.Context) {
ctx.HTML(200, "backup")
}
func backupDownload(ctx *macaron.Context) {
cfgFile := config.ConfigFileUsed()
_, fileName := path.Split(cfgFile)
ctx.ServeFile(cfgFile, fileName)
}