We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fedf445 commit a9844aeCopy full SHA for a9844ae
cmd/web.go
@@ -562,6 +562,8 @@ func runWeb(ctx *cli.Context) error {
562
})
563
// ***** END: Repository *****
564
565
+ m.Get("/notifications", reqSignIn, user.Notifications)
566
+
567
m.Group("/api", func() {
568
apiv1.RegisterRoutes(m)
569
}, ignSignIn)
routers/user/notification.go
@@ -0,0 +1,10 @@
1
+package user
2
3
+import (
4
+ "code.gitea.io/gitea/modules/context"
5
+)
6
7
+// Notifications is the notifications page
8
+func Notifications(c *context.Context) {
9
+ panic("Not implemented")
10
+}
0 commit comments