12345678910111213141516 |
- package repo
- import (
- "github.com/go-martini/martini"
- "github.com/gogits/gogs/modules/middleware"
- )
- func Pulls(ctx *middleware.Context, params martini.Params) {
- ctx.Data["IsRepoToolbarPulls"] = true
- ctx.HTML(200, "repo/pulls")
- }
|