Merge remote-tracking branch 'origin/exp' into exp
This commit is contained in:
commit
c1b1ded873
2 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -104,4 +104,4 @@ angular.module('app').filter('unique', function() {
|
|||
}
|
||||
return uniqueList;
|
||||
};
|
||||
});
|
||||
});
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue