feat(webhook): add httpmethod to webhook

closes #6255
This commit is contained in:
bergquist
2016-10-18 16:18:16 +02:00
parent 9429434cb5
commit d1eceedf55
6 changed files with 57 additions and 40 deletions

View File

@ -17,17 +17,19 @@ type SendEmailCommandSync struct {
}
type SendWebhook struct {
Url string
User string
Password string
Body string
Url string
User string
Password string
Body string
HttpMethod string
}
type SendWebhookSync struct {
Url string
User string
Password string
Body string
Url string
User string
Password string
Body string
HttpMethod string
}
type SendResetPasswordEmailCommand struct {