History returns history of webhook by given conditions.
(page int)
| 147 | |
| 148 | // History returns history of webhook by given conditions. |
| 149 | func (w *Webhook) History(page int) ([]*HookTask, error) { |
| 150 | return HookTasks(w.ID, page) |
| 151 | } |
| 152 | |
| 153 | // UpdateEvent handles conversion from HookEvent to Events. |
| 154 | func (w *Webhook) UpdateEvent() error { |
no test coverage detected