This commit is contained in:
Joachim Hill-Grannec 2017-02-23 13:21:47 -08:00
parent 82189c27fe
commit 3141ccdaae
2 changed files with 10 additions and 10 deletions

View file

@ -132,12 +132,12 @@ func (c *Client) FindFileForRepo(owner string, repo string, fileName string, ref
}
func (c *Client) CreateHook(owner string, name string, callBackLink string) error {
hookDetails , err := c.GetHookDetails(owner, name)
hookDetails, err := c.GetHookDetails(owner, name)
if err != nil {
return err
}
hooks := make([]string, 0)
if (hookDetails.Enabled) {
if hookDetails.Enabled {
hookSettings, err := c.GetHooks(owner, name)
if err != nil {
return err

View file

@ -172,14 +172,14 @@ type RefChange struct {
type HookPluginDetails struct {
Details struct {
Key string `json:"key"`
Name string `json:"name"`
Type string `json:"type"`
Description string `json:"description"`
Version string `json:"version"`
ConfigFormKey string `json:"configFormKey"`
} `json:"details"`
Enabled bool `json:"enabled"`
Key string `json:"key"`
Name string `json:"name"`
Type string `json:"type"`
Description string `json:"description"`
Version string `json:"version"`
ConfigFormKey string `json:"configFormKey"`
} `json:"details"`
Enabled bool `json:"enabled"`
Configured bool `json:"configured"`
}