Add preferences service API for products (#20869)

Этот коммит содержится в:
Doug Lauder
2022-08-23 11:57:07 -04:00
коммит произвёл GitHub
родитель 3138543d10
Коммит 6a6e05073e
4 изменённых файлов: 35 добавлений и 0 удалений

Просмотреть файл

@@ -226,6 +226,10 @@ func NewChannels(s *Server, services map[ServiceKey]any) (*Channels, error) {
services[UserKey] = &App{ch: ch}
services[PreferencesKey] = &preferencesServiceWrapper{
app: &App{ch: ch},
}
return ch, nil
}