Use correct context in routers/web
(#19597)
- Don't use the `APIContext` in the web routers.
This commit is contained in:
parent
92f139d091
commit
cc3016f70d
1 changed files with 3 additions and 3 deletions
|
@ -15,7 +15,7 @@ import (
|
||||||
"code.gitea.io/gitea/modules/base"
|
"code.gitea.io/gitea/modules/base"
|
||||||
"code.gitea.io/gitea/modules/context"
|
"code.gitea.io/gitea/modules/context"
|
||||||
"code.gitea.io/gitea/modules/setting"
|
"code.gitea.io/gitea/modules/setting"
|
||||||
api "code.gitea.io/gitea/modules/structs"
|
"code.gitea.io/gitea/modules/structs"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -194,6 +194,6 @@ func NotificationPurgePost(c *context.Context) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewAvailable returns the notification counts
|
// NewAvailable returns the notification counts
|
||||||
func NewAvailable(ctx *context.APIContext) {
|
func NewAvailable(ctx *context.Context) {
|
||||||
ctx.JSON(http.StatusOK, api.NotificationCount{New: models.CountUnread(ctx.Doer)})
|
ctx.JSON(http.StatusOK, structs.NotificationCount{New: models.CountUnread(ctx.Doer)})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue