go get
This commit is contained in:
parent
d26a333dfb
commit
ea74be2f2e
5 changed files with 24 additions and 1 deletions
|
@ -11,6 +11,11 @@ import (
|
|||
)
|
||||
|
||||
func Home(ctx *middleware.Context) {
|
||||
if ctx.Query("go-get") == "1" {
|
||||
ctx.Write(base.GetGoGetMetaList())
|
||||
return
|
||||
}
|
||||
|
||||
if ctx.IsSigned {
|
||||
user.Dashboard(ctx)
|
||||
return
|
||||
|
|
|
@ -107,6 +107,10 @@ func MigratePost(ctx *middleware.Context, form auth.MigrateRepoForm) {
|
|||
}
|
||||
|
||||
func Single(ctx *middleware.Context, params martini.Params) {
|
||||
if ctx.Query("go-get") == "1" {
|
||||
base.GoGetMetas[strings.TrimSuffix(ctx.Repo.CloneLink.HTTPS, ".git")] = true
|
||||
}
|
||||
|
||||
branchName := ctx.Repo.BranchName
|
||||
userName := ctx.Repo.Owner.Name
|
||||
repoName := ctx.Repo.Repository.Name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue