add accounts to delayed

This commit is contained in:
A.Unger
2021-03-10 12:34:23 +01:00
parent 6054e6b4a1
commit a473780c9d
+1 -1
View File
@@ -78,7 +78,6 @@ func NewService(options ...Option) (*Service, error) {
s.ServicesRegistry["settings"] = settings.NewSutureService
s.ServicesRegistry["storage-metadata"] = storage.NewStorageMetadata
s.ServicesRegistry["accounts"] = accounts.NewSutureService
s.ServicesRegistry["glauth"] = glauth.NewSutureService
s.ServicesRegistry["idp"] = idp.NewSutureService
s.ServicesRegistry["ocs"] = ocs.NewSutureService
@@ -100,6 +99,7 @@ func NewService(options ...Option) (*Service, error) {
// populate delayed services
s.Delayed["storage-sharing"] = storage.NewSharing
s.Delayed["accounts"] = accounts.NewSutureService
return s, nil
}