mirror of
https://github.com/go-gitea/gitea
synced 2024-12-25 18:14:28 +00:00
Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
parent
b4d18dae19
commit
159a4db30a
@ -797,3 +797,11 @@ func (m *webhookNotifier) NotifySyncPushCommits(pusher *models.User, repo *model
|
|||||||
log.Error("PrepareWebhooks: %v", err)
|
log.Error("PrepareWebhooks: %v", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *webhookNotifier) NotifySyncCreateRef(pusher *models.User, repo *models.Repository, refType, refFullName string) {
|
||||||
|
m.NotifyCreateRef(pusher, repo, refType, refFullName)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *webhookNotifier) NotifySyncDeleteRef(pusher *models.User, repo *models.Repository, refType, refFullName string) {
|
||||||
|
m.NotifyDeleteRef(pusher, repo, refType, refFullName)
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user