Signed-off-by: Konrad <konrad@kola-entertainments.de>
This commit is contained in:
Konrad Langenberg 2017-10-30 21:45:48 +01:00 committed by Konrad
parent 751bbee534
commit 913584aa6f
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
2 changed files with 1 additions and 2 deletions

View File

@ -2453,7 +2453,6 @@ func (repo *Repository) GetUserFork(userID int64) (*Repository, error) {
return &forkedRepo, nil
}
// Get Blocked By Dependencies, aka all issues this issue is blocked by.
func (repo *Repository) getBlockedByDependencies(e Engine, issueID int64) (_ []*IssueDependencyIssue, err error) {
var issueDeps []*IssueDependencyIssue

View File

@ -483,7 +483,7 @@ func RegisterRoutes(m *macaron.Macaron) {
m.Post("/title", repo.UpdateIssueTitle)
m.Post("/content", repo.UpdateIssueContent)
m.Post("/watch", repo.IssueWatch)
m.Group("/dependency", func(){
m.Group("/dependency", func() {
m.Post("/add", repo.AddDependency)
m.Post("/remove", repo.RemoveDependency)
})