1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-01 17:05:48 +00:00
gitea/routers/repo/branch.go

32 lines
705 B
Go
Raw Normal View History

2014-03-24 10:25:15 +00:00
// 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 (
"github.com/go-gitea/gitea/modules/base"
"github.com/go-gitea/gitea/modules/context"
2014-03-24 10:25:15 +00:00
)
2014-06-23 03:11:12 +00:00
const (
BRANCH base.TplName = "repo/branch"
)
2016-03-11 16:56:52 +00:00
func Branches(ctx *context.Context) {
2014-05-26 00:11:25 +00:00
ctx.Data["Title"] = "Branches"
ctx.Data["IsRepoToolbarBranches"] = true
2014-04-13 01:35:36 +00:00
brs, err := ctx.Repo.GitRepo.GetBranches()
2014-03-24 10:25:15 +00:00
if err != nil {
2014-06-23 03:11:12 +00:00
ctx.Handle(500, "repo.Branches(GetBranches)", err)
2014-03-24 10:25:15 +00:00
return
} else if len(brs) == 0 {
2014-06-23 03:11:12 +00:00
ctx.Handle(404, "repo.Branches(GetBranches)", nil)
2014-03-24 10:25:15 +00:00
return
}
ctx.Data["Branches"] = brs
2014-06-23 03:11:12 +00:00
ctx.HTML(200, BRANCH)
2014-03-24 10:25:15 +00:00
}