mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-22 18:01:02 +00:00
commit
2c75f225d9
2 changed files with 6 additions and 4 deletions
|
@ -132,7 +132,7 @@ app.config(['$routeProvider', '$locationProvider', '$httpProvider', function($ro
|
|||
}
|
||||
}
|
||||
})
|
||||
.when('/:remote/:owner/:name/:branch/:commit', {
|
||||
.when('/:remote/:owner/:name/:branch*\/:commit', {
|
||||
templateUrl: '/static/views/commit.html',
|
||||
controller: 'CommitController',
|
||||
title: 'Recent Commits',
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
package router
|
||||
|
||||
import (
|
||||
"regexp"
|
||||
|
||||
"github.com/drone/drone/server/handler"
|
||||
"github.com/drone/drone/server/middleware"
|
||||
|
||||
|
@ -36,9 +38,9 @@ func New() *web.Mux {
|
|||
repos.Use(middleware.SetRepo)
|
||||
repos.Use(middleware.RequireRepoRead)
|
||||
repos.Use(middleware.RequireRepoAdmin)
|
||||
repos.Get("/api/repos/:host/:owner/:name/branches/:branch/commits/:commit/console", handler.GetOutput)
|
||||
repos.Get("/api/repos/:host/:owner/:name/branches/:branch/commits/:commit", handler.GetCommit)
|
||||
repos.Post("/api/repos/:host/:owner/:name/branches/:branch/commits/:commit", handler.PostCommit)
|
||||
repos.Get(regexp.MustCompile(`^\/api\/repos\/(?P<host>(.*))\/(?P<owner>(.*))\/(?P<name>(.*))\/branches\/(?P<branch>(.*))\/commits\/(?P<commit>(.*))\/console$`), handler.GetOutput)
|
||||
repos.Get(regexp.MustCompile(`^\/api\/repos\/(?P<host>(.*))\/(?P<owner>(.*))\/(?P<name>(.*))\/branches\/(?P<branch>(.*))\/commits\/(?P<commit>(.*))$`), handler.GetCommit)
|
||||
repos.Post(regexp.MustCompile(`^\/api\/repos\/(?P<host>(.*))\/(?P<owner>(.*))\/(?P<name>(.*))\/branches\/(?P<branch>(.*))\/commits\/(?P<commit>(.*))\/console$`), handler.PostCommit)
|
||||
repos.Get("/api/repos/:host/:owner/:name/commits", handler.GetCommitList)
|
||||
repos.Get("/api/repos/:host/:owner/:name", handler.GetRepo)
|
||||
repos.Put("/api/repos/:host/:owner/:name", handler.PutRepo)
|
||||
|
|
Loading…
Reference in a new issue