From df60c20f86d5151ac3b28371a7a2fcee8c63b3ef Mon Sep 17 00:00:00 2001 From: Doug Lauder Date: Wed, 17 Aug 2022 11:21:22 -0400 Subject: [PATCH] add userService to the services provided by channels product (#20840) --- app/channels.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/channels.go b/app/channels.go index ed3dea6c44..332f975922 100644 --- a/app/channels.go +++ b/app/channels.go @@ -224,6 +224,8 @@ func NewChannels(s *Server, services map[ServiceKey]any) (*Channels, error) { ch: ch, } + services[UserKey] = &App{ch: ch} + return ch, nil }