Skip to content

Commit

Permalink
Move ui notification to service layer (#26907)
Browse files Browse the repository at this point in the history
Extract from #22266
  • Loading branch information
lunny authored Sep 5, 2023
1 parent dc2dd76 commit 6c73c0d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 0 additions & 2 deletions modules/notification/notification.go
Original file line number Diff line number Diff line change
Expand Up @@ -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/ui"
"code.gitea.io/gitea/modules/repository"
)

Expand All @@ -28,7 +27,6 @@ func RegisterNotifier(notifier base.Notifier) {

// NewContext registers notification handlers
func NewContext() {
RegisterNotifier(ui.NewNotifier())
RegisterNotifier(action.NewNotifier())
}

Expand Down
2 changes: 2 additions & 0 deletions routers/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ import (
repo_service "code.gitea.io/gitea/services/repository"
"code.gitea.io/gitea/services/repository/archiver"
"code.gitea.io/gitea/services/task"
"code.gitea.io/gitea/services/uinotification"
"code.gitea.io/gitea/services/webhook"
)

Expand Down Expand Up @@ -119,6 +120,7 @@ func InitWebInstalled(ctx context.Context) {
mailer.NewContext(ctx)
mustInit(cache.NewContext)
notification.NewContext()
mustInit(uinotification.Init)
mustInit(archiver.Init)

highlight.NewContext()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright 2018 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package ui
package uinotification

import (
"context"
Expand All @@ -14,6 +14,7 @@ import (
"code.gitea.io/gitea/modules/container"
"code.gitea.io/gitea/modules/graceful"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/notification"
"code.gitea.io/gitea/modules/notification/base"
"code.gitea.io/gitea/modules/queue"
)
Expand All @@ -32,6 +33,12 @@ type (
}
)

func Init() error {
notification.RegisterNotifier(NewNotifier())

return nil
}

var _ base.Notifier = &notificationService{}

// NewNotifier create a new notificationService notifier
Expand Down

0 comments on commit 6c73c0d

Please sign in to comment.