fix(webhooks): add created by user object when creating a webhook
This commit is contained in:
parent
72366a5b27
commit
61cd08fa13
@ -116,6 +116,11 @@ func (w *Webhook) Create(s *xorm.Session, a web.Auth) (err error) {
|
|||||||
// TODO: check valid webhook events
|
// TODO: check valid webhook events
|
||||||
w.CreatedByID = a.GetID()
|
w.CreatedByID = a.GetID()
|
||||||
_, err = s.Insert(w)
|
_, err = s.Insert(w)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
w.CreatedBy, err = user.GetUserByID(s, a.GetID())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user