bench-forgejo/modules/git/repo_hook.go

15 lines
387 B
Go
Raw Normal View History

2016-11-04 03:46:01 +05:30
// Copyright 2015 The Gogs Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2016-11-04 03:46:01 +05:30
package git
// 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)
}