mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-09-23 03:12:23 +00:00
Merge remote-tracking branch 'origin/exp' into exp
This commit is contained in:
@@ -33,7 +33,7 @@ angular.module('app').filter('fullName', function() {
|
||||
angular.module('app').filter('fullPath', function() {
|
||||
return function(repo) {
|
||||
if (repo == undefined) { return ""; }
|
||||
return repo.remote+"/"+repo.owner+"/"+repo.name;
|
||||
return repo.host+"/"+repo.owner+"/"+repo.name;
|
||||
}
|
||||
});
|
||||
|
||||
|
@@ -1,6 +1,7 @@
|
||||
package handler
|
||||
|
||||
import (
|
||||
"log"
|
||||
"net/http"
|
||||
"strings"
|
||||
|
||||
@@ -28,6 +29,7 @@ func NewHookHandler(users database.UserManager, repos database.RepoManager, comm
|
||||
// GET /hook/:host
|
||||
func (h *HookHandler) PostHook(w http.ResponseWriter, r *http.Request) error {
|
||||
host := r.FormValue(":host")
|
||||
log.Println("received post-commit hook.")
|
||||
|
||||
remoteServer, err := h.remotes.FindType(host)
|
||||
if err != nil {
|
||||
|
Reference in New Issue
Block a user