diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-16 03:41:22 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-16 03:41:22 -0400 |
commit | 8de9517862acd77c27da015654fc236a6722d188 (patch) | |
tree | 5f228f7f9948945dfd4629f05c9d69eb28332e9d /routers/user/user.go | |
parent | c3e0554fd77f976b58a8da10d4878353bb895a78 (diff) | |
download | gitea-8de9517862acd77c27da015654fc236a6722d188.tar.gz gitea-8de9517862acd77c27da015654fc236a6722d188.zip |
Mirror fix
Diffstat (limited to 'routers/user/user.go')
-rw-r--r-- | routers/user/user.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/routers/user/user.go b/routers/user/user.go index 8d8691a39f..e13f6909dd 100644 --- a/routers/user/user.go +++ b/routers/user/user.go @@ -189,3 +189,15 @@ func Feeds(ctx *middleware.Context, form auth.FeedsForm) { } ctx.Render.JSON(200, &feeds) } + +func Issues(ctx *middleware.Context) string { + return "This is issues page" +} + +func Pulls(ctx *middleware.Context) string { + return "This is pulls page" +} + +func Stars(ctx *middleware.Context) string { + return "This is stars page" +} |