should show patch author?
This commit is contained in:
parent
7fa4889dce
commit
aab8d232b5
|
@ -70,8 +70,11 @@ func listPatchsets(w http.ResponseWriter) {
|
||||||
fmt.Println(entry.Name(), err)
|
fmt.Println(entry.Name(), err)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
author := "Author: " + os.Getenv("GIT_AUTHOR_NAME")
|
author := "Author: " + p.GitAuthorName
|
||||||
author += " <" + os.Getenv("GIT_AUTHOR_EMAIL") + ">"
|
author += " <" + p.GitAuthorEmail + ">"
|
||||||
|
|
||||||
|
// author := "Author: " + os.Getenv("GIT_AUTHOR_NAME")
|
||||||
|
// author += " <" + os.Getenv("GIT_AUTHOR_EMAIL") + ">"
|
||||||
fmt.Fprintln(w, entry.Name(), p.Name, p.Comment, author)
|
fmt.Fprintln(w, entry.Name(), p.Name, p.Comment, author)
|
||||||
fmt.Println(entry.Name(), p.Name, p.Comment, author)
|
fmt.Println(entry.Name(), p.Name, p.Comment, author)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue