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