autogits/bots-common/request_wiki.go

16 lines
209 B
Go
Raw Normal View History

2024-08-26 14:09:23 +02:00
package common
type WikiWebhookEvent struct {
Action string
Page string
Comment string
2024-08-27 12:15:59 +02:00
Repository *Repository
2024-08-26 14:09:23 +02:00
Sender User
}
2024-08-28 00:45:47 +02:00
func (w *WikiWebhookEvent) GetAction() string {
return w.Action
}