Documentation ¶
Index ¶
- func AddOrgHook(ctx *context.APIContext, form *api.CreateHookOption)
- func AddRepoHook(ctx *context.APIContext, form *api.CreateHookOption)
- func CheckCreateHookOption(ctx *context.APIContext, form *api.CreateHookOption) bool
- func ConvertToSHA1(ctx *context.Context, commitID string) (git.SHA1, error)
- func EditOrgHook(ctx *context.APIContext, form *api.EditHookOption, hookID int64)
- func EditRepoHook(ctx *context.APIContext, form *api.EditHookOption, hookID int64)
- func GetGitRefs(ctx *context.APIContext, filter string) ([]*git.Reference, string, error)
- func GetListOptions(ctx *context.APIContext) db.ListOptions
- func GetOrgHook(ctx *context.APIContext, orgID, hookID int64) (*webhook.Webhook, error)
- func GetRepoHook(ctx *context.APIContext, repoID, hookID int64) (*webhook.Webhook, error)
- func MustConvertToSHA1(ctx *context.Context, commitID string) string
- func ResolveRefOrSha(ctx *context.APIContext, ref string) string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AddOrgHook ¶
func AddOrgHook(ctx *context.APIContext, form *api.CreateHookOption)
AddOrgHook add a hook to an organization. Writes to `ctx` accordingly
func AddRepoHook ¶
func AddRepoHook(ctx *context.APIContext, form *api.CreateHookOption)
AddRepoHook add a hook to a repo. Writes to `ctx` accordingly
func CheckCreateHookOption ¶
func CheckCreateHookOption(ctx *context.APIContext, form *api.CreateHookOption) bool
CheckCreateHookOption check if a CreateHookOption form is valid. If invalid, write the appropriate error to `ctx`. Return whether the form is valid
func ConvertToSHA1 ¶ added in v1.18.0
ConvertToSHA1 returns a full-length SHA1 from a potential ID string
func EditOrgHook ¶
func EditOrgHook(ctx *context.APIContext, form *api.EditHookOption, hookID int64)
EditOrgHook edit webhook `w` according to `form`. Writes to `ctx` accordingly
func EditRepoHook ¶
func EditRepoHook(ctx *context.APIContext, form *api.EditHookOption, hookID int64)
EditRepoHook edit webhook `w` according to `form`. Writes to `ctx` accordingly
func GetGitRefs ¶ added in v1.15.0
GetGitRefs return git references based on filter
func GetListOptions ¶ added in v1.12.0
func GetListOptions(ctx *context.APIContext) db.ListOptions
GetListOptions returns list options using the page and limit parameters
func GetOrgHook ¶
GetOrgHook get an organization's webhook. If there is an error, write to `ctx` accordingly and return the error
func GetRepoHook ¶
GetRepoHook get a repo's webhook. If there is an error, write to `ctx` accordingly and return the error
func MustConvertToSHA1 ¶ added in v1.18.0
MustConvertToSHA1 returns a full-length SHA1 string from a potential ID string, or returns origin input if it can't convert to SHA1
func ResolveRefOrSha ¶ added in v1.15.0
func ResolveRefOrSha(ctx *context.APIContext, ref string) string
ResolveRefOrSha resolve ref to sha if exist
Types ¶
This section is empty.