Skip to content

Commit d89228b

Browse files
author
Diyor Khaydarov
committed
fix: undo last commit
1 parent f57abf5 commit d89228b

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

Diff for: modules/core/presentation/controllers/group_controller.go

+7-5
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,16 @@ import (
3434
)
3535

3636
type GroupRealtimeUpdates struct {
37-
app application.Application
38-
basePath string
37+
app application.Application
38+
groupService *services.GroupService
39+
basePath string
3940
}
4041

41-
func NewGroupRealtimeUpdates(app application.Application, basePath string) *GroupRealtimeUpdates {
42+
func NewGroupRealtimeUpdates(app application.Application, groupService *services.GroupService, basePath string) *GroupRealtimeUpdates {
4243
return &GroupRealtimeUpdates{
43-
app: app,
44-
basePath: basePath,
44+
app: app,
45+
groupService: groupService,
46+
basePath: basePath,
4547
}
4648
}
4749

0 commit comments

Comments
 (0)