23 lines
344 B
Go
23 lines
344 B
Go
package web
|
|
|
|
import (
|
|
"Gwen/global"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type Index struct {
|
|
}
|
|
|
|
func (i *Index) Index(c *gin.Context) {
|
|
c.Redirect(302, "/_admin/")
|
|
}
|
|
|
|
func (i *Index) ConfigJs(c *gin.Context) {
|
|
apiServer := global.Config.Rustdesk.ApiServer
|
|
|
|
tmp := `
|
|
localStorage.setItem('api-server', "` + apiServer + `")
|
|
`
|
|
c.String(200, tmp)
|
|
}
|