2016-11-03 16:16:01 -06:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-11-03 16:16:01 -06:00
|
|
|
|
|
|
|
package git
|
|
|
|
|
2019-03-27 03:33:00 -06:00
|
|
|
// GetHook get one hook according the name on a repository
|
2016-11-03 16:16:01 -06:00
|
|
|
func (repo *Repository) GetHook(name string) (*Hook, error) {
|
|
|
|
return GetHook(repo.Path, name)
|
|
|
|
}
|
|
|
|
|
2016-12-22 02:30:52 -07:00
|
|
|
// Hooks get all the hooks on the repository
|
2016-11-03 16:16:01 -06:00
|
|
|
func (repo *Repository) Hooks() ([]*Hook, error) {
|
|
|
|
return ListHooks(repo.Path)
|
|
|
|
}
|