mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 15:19:09 +01:00
d578b71d61
* move code.gitea.io/git to code.gitea.io/gitea/modules/git * fix imports * fix fmt * fix misspell * remove wrong tests data * fix unit tests * fix tests * fix tests * fix tests * fix tests * fix tests * enable Debug to trace the failure tests * fix tests * fix tests * fix tests * fix tests * fix tests * comment commit count tests since git clone depth is 50 * fix tests * update from code.gitea.io/git * revert change to makefile
15 lines
459 B
Go
15 lines
459 B
Go
// Copyright 2015 The Gogs Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package git
|
|
|
|
// GetHook get one hook according the name on a repository
|
|
func (repo *Repository) GetHook(name string) (*Hook, error) {
|
|
return GetHook(repo.Path, name)
|
|
}
|
|
|
|
// Hooks get all the hooks on the repository
|
|
func (repo *Repository) Hooks() ([]*Hook, error) {
|
|
return ListHooks(repo.Path)
|
|
}
|