2019-05-11 04:21:34 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-05-11 04:21:34 -06:00
|
|
|
|
|
|
|
package structs
|
|
|
|
|
|
|
|
// GitHook represents a Git repository hook
|
|
|
|
type GitHook struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
IsActive bool `json:"is_active"`
|
|
|
|
Content string `json:"content,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// GitHookList represents a list of Git hooks
|
|
|
|
type GitHookList []*GitHook
|
|
|
|
|
|
|
|
// EditGitHookOption options when modifying one Git hook
|
|
|
|
type EditGitHookOption struct {
|
|
|
|
Content string `json:"content"`
|
|
|
|
}
|