forked from forgejo/forgejo
add update
This commit is contained in:
parent
f047df6e2b
commit
3035a38caa
4 changed files with 78 additions and 0 deletions
11
serve.go
11
serve.go
|
@ -73,6 +73,17 @@ func runServ(*cli.Context) {
|
|||
if strings.HasSuffix(repoName, ".git") {
|
||||
repoName = repoName[:len(repoName)-4]
|
||||
}
|
||||
|
||||
os.Setenv("userName", user.Name)
|
||||
os.Setenv("userId", strconv.Itoa(int(user.Id)))
|
||||
repo, err := models.GetRepositoryByName(user, repoName)
|
||||
if err != nil {
|
||||
println("Unavilable repository", err)
|
||||
return
|
||||
}
|
||||
os.Setenv("repoId", strconv.Itoa(int(repo.Id)))
|
||||
os.Setenv("repoName", repoName)
|
||||
|
||||
isWrite := In(verb, COMMANDS_WRITE)
|
||||
isRead := In(verb, COMMANDS_READONLY)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue