aboutsummaryrefslogtreecommitdiff
path: root/routers/repo/forks.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/repo/forks.go')
-rw-r--r--routers/repo/forks.go37
1 files changed, 37 insertions, 0 deletions
diff --git a/routers/repo/forks.go b/routers/repo/forks.go
new file mode 100644
index 00000000..099f0cc4
--- /dev/null
+++ b/routers/repo/forks.go
@@ -0,0 +1,37 @@
+// Copyright 2014 The Gogs Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package repo
+
+import (
+ "fmt"
+ "github.com/gogits/gogs/modules/base"
+ "github.com/gogits/gogs/modules/middleware"
+)
+
+const (
+ FORKS base.TplName = "repo/forks"
+)
+
+func Forks(ctx *middleware.Context) {
+ ctx.Data["Title"] = ctx.Tr("repos.forks")
+
+ forks, err := ctx.Repo.Repository.GetForks()
+
+ if err != nil {
+ ctx.Handle(500, "GetForks", err)
+ return
+ }
+
+ for _, fork := range forks {
+ if err = fork.GetOwner(); err != nil {
+ ctx.Handle(500, "GetOwner", fmt.Errorf("%d: %v", fork.ID, err))
+ return
+ }
+ }
+
+ ctx.Data["Forks"] = forks
+
+ ctx.HTML(200, FORKS)
+}