Documentation ¶
Index ¶
- type Notifier
- type NullNotifier
- func (*NullNotifier) NotifyCreateIssueComment(doer *models.User, repo *models.Repository, issue *models.Issue, ...)
- func (*NullNotifier) NotifyCreateRepository(doer *models.User, u *models.User, repo *models.Repository)
- func (*NullNotifier) NotifyDeleteComment(doer *models.User, c *models.Comment)
- func (*NullNotifier) NotifyDeleteRelease(doer *models.User, rel *models.Release)
- func (*NullNotifier) NotifyDeleteRepository(doer *models.User, repo *models.Repository)
- func (*NullNotifier) NotifyForkRepository(doer *models.User, oldRepo, repo *models.Repository)
- func (*NullNotifier) NotifyIssueChangeAssignee(doer *models.User, issue *models.Issue, removed bool)
- func (*NullNotifier) NotifyIssueChangeContent(doer *models.User, issue *models.Issue, oldContent string)
- func (*NullNotifier) NotifyIssueChangeLabels(doer *models.User, issue *models.Issue, addedLabels []*models.Label, ...)
- func (*NullNotifier) NotifyIssueChangeMilestone(doer *models.User, issue *models.Issue)
- func (*NullNotifier) NotifyIssueChangeStatus(doer *models.User, issue *models.Issue, isClosed bool)
- func (*NullNotifier) NotifyIssueChangeTitle(doer *models.User, issue *models.Issue, oldTitle string)
- func (*NullNotifier) NotifyIssueClearLabels(doer *models.User, issue *models.Issue)
- func (*NullNotifier) NotifyMergePullRequest(pr *models.PullRequest, doer *models.User, baseRepo *git.Repository)
- func (*NullNotifier) NotifyMigrateRepository(doer *models.User, u *models.User, repo *models.Repository)
- func (*NullNotifier) NotifyNewIssue(issue *models.Issue)
- func (*NullNotifier) NotifyNewPullRequest(pr *models.PullRequest)
- func (*NullNotifier) NotifyNewRelease(rel *models.Release)
- func (*NullNotifier) NotifyPullRequestReview(pr *models.PullRequest, r *models.Review, comment *models.Comment)
- func (*NullNotifier) NotifyUpdateComment(doer *models.User, c *models.Comment, oldContent string)
- func (*NullNotifier) NotifyUpdateRelease(doer *models.User, rel *models.Release)
- func (*NullNotifier) Run()
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Notifier ¶
type Notifier interface { Run() NotifyCreateRepository(doer *models.User, u *models.User, repo *models.Repository) NotifyMigrateRepository(doer *models.User, u *models.User, repo *models.Repository) NotifyDeleteRepository(doer *models.User, repo *models.Repository) NotifyForkRepository(doer *models.User, oldRepo, repo *models.Repository) NotifyNewIssue(*models.Issue) NotifyIssueChangeStatus(*models.User, *models.Issue, bool) NotifyIssueChangeMilestone(doer *models.User, issue *models.Issue) NotifyIssueChangeAssignee(doer *models.User, issue *models.Issue, removed bool) NotifyIssueChangeContent(doer *models.User, issue *models.Issue, oldContent string) NotifyIssueClearLabels(doer *models.User, issue *models.Issue) NotifyIssueChangeTitle(doer *models.User, issue *models.Issue, oldTitle string) NotifyIssueChangeLabels(doer *models.User, issue *models.Issue, addedLabels []*models.Label, removedLabels []*models.Label) NotifyNewPullRequest(*models.PullRequest) NotifyMergePullRequest(*models.PullRequest, *models.User, *git.Repository) NotifyPullRequestReview(*models.PullRequest, *models.Review, *models.Comment) NotifyCreateIssueComment(*models.User, *models.Repository, *models.Issue, *models.Comment) NotifyUpdateComment(*models.User, *models.Comment, string) NotifyDeleteComment(*models.User, *models.Comment) NotifyNewRelease(rel *models.Release) NotifyUpdateRelease(doer *models.User, rel *models.Release) NotifyDeleteRelease(doer *models.User, rel *models.Release) }
Notifier defines an interface to notify receiver
type NullNotifier ¶
type NullNotifier struct { }
NullNotifier implements a blank notifier
func (*NullNotifier) NotifyCreateIssueComment ¶
func (*NullNotifier) NotifyCreateIssueComment(doer *models.User, repo *models.Repository, issue *models.Issue, comment *models.Comment)
NotifyCreateIssueComment places a place holder function
func (*NullNotifier) NotifyCreateRepository ¶
func (*NullNotifier) NotifyCreateRepository(doer *models.User, u *models.User, repo *models.Repository)
NotifyCreateRepository places a place holder function
func (*NullNotifier) NotifyDeleteComment ¶
func (*NullNotifier) NotifyDeleteComment(doer *models.User, c *models.Comment)
NotifyDeleteComment places a place holder function
func (*NullNotifier) NotifyDeleteRelease ¶
func (*NullNotifier) NotifyDeleteRelease(doer *models.User, rel *models.Release)
NotifyDeleteRelease places a place holder function
func (*NullNotifier) NotifyDeleteRepository ¶
func (*NullNotifier) NotifyDeleteRepository(doer *models.User, repo *models.Repository)
NotifyDeleteRepository places a place holder function
func (*NullNotifier) NotifyForkRepository ¶
func (*NullNotifier) NotifyForkRepository(doer *models.User, oldRepo, repo *models.Repository)
NotifyForkRepository places a place holder function
func (*NullNotifier) NotifyIssueChangeAssignee ¶
func (*NullNotifier) NotifyIssueChangeAssignee(doer *models.User, issue *models.Issue, removed bool)
NotifyIssueChangeAssignee places a place holder function
func (*NullNotifier) NotifyIssueChangeContent ¶
func (*NullNotifier) NotifyIssueChangeContent(doer *models.User, issue *models.Issue, oldContent string)
NotifyIssueChangeContent places a place holder function
func (*NullNotifier) NotifyIssueChangeLabels ¶
func (*NullNotifier) NotifyIssueChangeLabels(doer *models.User, issue *models.Issue, addedLabels []*models.Label, removedLabels []*models.Label)
NotifyIssueChangeLabels places a place holder function
func (*NullNotifier) NotifyIssueChangeMilestone ¶
func (*NullNotifier) NotifyIssueChangeMilestone(doer *models.User, issue *models.Issue)
NotifyIssueChangeMilestone places a place holder function
func (*NullNotifier) NotifyIssueChangeStatus ¶
NotifyIssueChangeStatus places a place holder function
func (*NullNotifier) NotifyIssueChangeTitle ¶
func (*NullNotifier) NotifyIssueChangeTitle(doer *models.User, issue *models.Issue, oldTitle string)
NotifyIssueChangeTitle places a place holder function
func (*NullNotifier) NotifyIssueClearLabels ¶
func (*NullNotifier) NotifyIssueClearLabels(doer *models.User, issue *models.Issue)
NotifyIssueClearLabels places a place holder function
func (*NullNotifier) NotifyMergePullRequest ¶
func (*NullNotifier) NotifyMergePullRequest(pr *models.PullRequest, doer *models.User, baseRepo *git.Repository)
NotifyMergePullRequest places a place holder function
func (*NullNotifier) NotifyMigrateRepository ¶
func (*NullNotifier) NotifyMigrateRepository(doer *models.User, u *models.User, repo *models.Repository)
NotifyMigrateRepository places a place holder function
func (*NullNotifier) NotifyNewIssue ¶
func (*NullNotifier) NotifyNewIssue(issue *models.Issue)
NotifyNewIssue places a place holder function
func (*NullNotifier) NotifyNewPullRequest ¶
func (*NullNotifier) NotifyNewPullRequest(pr *models.PullRequest)
NotifyNewPullRequest places a place holder function
func (*NullNotifier) NotifyNewRelease ¶
func (*NullNotifier) NotifyNewRelease(rel *models.Release)
NotifyNewRelease places a place holder function
func (*NullNotifier) NotifyPullRequestReview ¶
func (*NullNotifier) NotifyPullRequestReview(pr *models.PullRequest, r *models.Review, comment *models.Comment)
NotifyPullRequestReview places a place holder function
func (*NullNotifier) NotifyUpdateComment ¶
NotifyUpdateComment places a place holder function
func (*NullNotifier) NotifyUpdateRelease ¶
func (*NullNotifier) NotifyUpdateRelease(doer *models.User, rel *models.Release)
NotifyUpdateRelease places a place holder function