@@ -30,7 +30,7 @@ import (
30
30
"github.com/devtron-labs/devtron/pkg/notifier"
31
31
"github.com/devtron-labs/devtron/pkg/notifier/beans"
32
32
"github.com/devtron-labs/devtron/pkg/pipeline"
33
- "github.com/devtron-labs/devtron/pkg/team"
33
+ "github.com/devtron-labs/devtron/pkg/team/read "
34
34
util "github.com/devtron-labs/devtron/util/event"
35
35
"github.com/devtron-labs/devtron/util/rbac"
36
36
"github.com/devtron-labs/devtron/util/response"
@@ -80,10 +80,10 @@ type NotificationRestHandlerImpl struct {
80
80
sesService notifier.SESNotificationService
81
81
smtpService notifier.SMTPNotificationService
82
82
enforcer casbin.Enforcer
83
- teamService team.TeamService
84
83
environmentService environment.EnvironmentService
85
84
pipelineBuilder pipeline.PipelineBuilder
86
85
enforcerUtil rbac.EnforcerUtil
86
+ teamReadService read.TeamReadService
87
87
}
88
88
89
89
type ChannelDto struct {
@@ -95,8 +95,9 @@ func NewNotificationRestHandlerImpl(dockerRegistryConfig pipeline.DockerRegistry
95
95
userAuthService user.UserService ,
96
96
validator * validator.Validate , notificationService notifier.NotificationConfigService ,
97
97
slackService notifier.SlackNotificationService , webhookService notifier.WebhookNotificationService , sesService notifier.SESNotificationService , smtpService notifier.SMTPNotificationService ,
98
- enforcer casbin.Enforcer , teamService team.TeamService , environmentService environment.EnvironmentService , pipelineBuilder pipeline.PipelineBuilder ,
99
- enforcerUtil rbac.EnforcerUtil ) * NotificationRestHandlerImpl {
98
+ enforcer casbin.Enforcer , environmentService environment.EnvironmentService , pipelineBuilder pipeline.PipelineBuilder ,
99
+ enforcerUtil rbac.EnforcerUtil ,
100
+ teamReadService read.TeamReadService ) * NotificationRestHandlerImpl {
100
101
return & NotificationRestHandlerImpl {
101
102
dockerRegistryConfig : dockerRegistryConfig ,
102
103
logger : logger ,
@@ -109,10 +110,10 @@ func NewNotificationRestHandlerImpl(dockerRegistryConfig pipeline.DockerRegistry
109
110
sesService : sesService ,
110
111
smtpService : smtpService ,
111
112
enforcer : enforcer ,
112
- teamService : teamService ,
113
113
environmentService : environmentService ,
114
114
pipelineBuilder : pipelineBuilder ,
115
115
enforcerUtil : enforcerUtil ,
116
+ teamReadService : teamReadService ,
116
117
}
117
118
}
118
119
@@ -299,7 +300,7 @@ func (impl NotificationRestHandlerImpl) SaveNotificationChannelConfig(w http.Res
299
300
for _ , item := range slackReq .SlackConfigDtos {
300
301
teamIds = append (teamIds , & item .TeamId )
301
302
}
302
- teams , err := impl .teamService .FindByIds (teamIds )
303
+ teams , err := impl .teamReadService .FindByIds (teamIds )
303
304
if err != nil {
304
305
common .WriteJsonResp (w , err , nil , http .StatusBadRequest )
305
306
return
@@ -454,7 +455,7 @@ func (impl NotificationRestHandlerImpl) FindAllNotificationConfig(w http.Respons
454
455
for _ , item := range slackConfigs {
455
456
teamIds = append (teamIds , & item .TeamId )
456
457
}
457
- teams , err := impl .teamService .FindByIds (teamIds )
458
+ teams , err := impl .teamReadService .FindByIds (teamIds )
458
459
if err != nil {
459
460
common .WriteJsonResp (w , err , nil , http .StatusBadRequest )
460
461
return
@@ -692,7 +693,7 @@ func (impl NotificationRestHandlerImpl) FindAllNotificationConfigAutocomplete(w
692
693
return
693
694
}
694
695
for _ , item := range channelsResponseAll {
695
- team , err := impl .teamService . FetchOne (item .TeamId )
696
+ team , err := impl .teamReadService . FindOne (item .TeamId )
696
697
if err != nil {
697
698
common .WriteJsonResp (w , err , nil , http .StatusBadRequest )
698
699
return
0 commit comments