mirror of
https://github.com/go-gitea/gitea.git
synced 2025-08-11 11:13:55 +09:00
Move indexer notification to service layer (#26906)
Extract from #22266
This commit is contained in:
@ -14,7 +14,6 @@ import (
|
||||
"code.gitea.io/gitea/modules/log"
|
||||
"code.gitea.io/gitea/modules/notification/action"
|
||||
"code.gitea.io/gitea/modules/notification/base"
|
||||
"code.gitea.io/gitea/modules/notification/indexer"
|
||||
"code.gitea.io/gitea/modules/notification/ui"
|
||||
"code.gitea.io/gitea/modules/repository"
|
||||
)
|
||||
@ -30,7 +29,6 @@ func RegisterNotifier(notifier base.Notifier) {
|
||||
// NewContext registers notification handlers
|
||||
func NewContext() {
|
||||
RegisterNotifier(ui.NewNotifier())
|
||||
RegisterNotifier(indexer.NewNotifier())
|
||||
RegisterNotifier(action.NewNotifier())
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user