1
0
Fork 0
forked from forgejo/forgejo

Add repo info to web hook post

This commit is contained in:
Unknown 2014-05-08 08:18:03 -04:00
parent 495d939ca5
commit 23a857d107
4 changed files with 39 additions and 4 deletions

View file

@ -30,11 +30,23 @@ type PayloadCommit struct {
Author *PayloadAuthor `json:"author"`
}
type PayloadRepo struct {
Id int64 `json:"id"`
Name string `json:"name"`
Url string `json:"url"`
Description string `json:"description"`
Website string `json:"website"`
Watchers int `json:"watchers"`
Owner *PayloadAuthor `json:"author"`
Private bool `json:"private"`
}
// Payload represents payload information of hook.
type Payload struct {
Secret string `json:"secret"`
Ref string `json:"ref"`
Commits []*PayloadCommit `json:"commits"`
Repo *PayloadRepo `json:"repository"`
Pusher *PayloadAuthor `json:"pusher"`
}