Browse Source

#2225

fix point page path
tags/v1.22.9.2^2
chenyifan01 3 years ago
parent
commit
2280f0be44
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      routers/routes/routes.go

+ 1
- 1
routers/routes/routes.go View File

@@ -595,7 +595,6 @@ func RegisterRoutes(m *macaron.Macaron) {
})

m.Group("/reward/point", func() {
m.Get("", point.GetPointPage)
m.Get("/limiter/list", point.GetPointLimitConfigList)
m.Post("/limiter/add", bindIgnErr(models.LimitConfigVO{}), point.AddPointLimitConfig)
m.Post("/limiter/delete", point.DeletePointLimitConfig)
@@ -1337,6 +1336,7 @@ func RegisterRoutes(m *macaron.Macaron) {
}, reqSignIn)

m.Group("/reward/point", func() {
m.Get("", point.GetPointPage)
m.Get("/account", point.GetPointAccount)
m.Get("/record/list", point.GetPointRecordList)
}, reqSignIn)


Loading…
Cancel
Save