@@ -30,18 +30,21 @@ public static ReadOnlyPublisher FromHandlerConfig(NomadKuboEventStreamHandlerCon
3030
3131 ReadOnlyImagesCollection readOnlyImagesCollection = new ReadOnlyImagesCollection
3232 {
33+ Id = handlerConfig . RoamingId ,
3334 Inner = handlerConfig . RoamingValue ,
3435 Client = client ,
3536 } ;
3637
3738 ReadOnlyConnectionCollection readOnlyConnectionCollection = new ReadOnlyConnectionCollection
3839 {
40+ Id = handlerConfig . RoamingId ,
3941 Inner = handlerConfig . RoamingValue ,
4042 Client = client ,
4143 } ;
4244
4345 ReadOnlyLinksCollection readOnlyLinksCollection = new ReadOnlyLinksCollection
4446 {
47+ Id = handlerConfig . RoamingId ,
4548 Inner = handlerConfig . RoamingValue ,
4649 Client = client ,
4750 } ;
@@ -57,16 +60,9 @@ public static ReadOnlyPublisher FromHandlerConfig(NomadKuboEventStreamHandlerCon
5760 } ;
5861
5962 ReadOnlyAccentColor readOnlyAccentColor = new ReadOnlyAccentColor
60- {
61- Inner = handlerConfig . RoamingValue ,
62- Client = client ,
63- } ;
64-
65- ReadOnlyUserRoleCollection readOnlyUserRoleCollection = new ( )
6663 {
6764 Id = handlerConfig . RoamingId ,
6865 Inner = handlerConfig . RoamingValue ,
69- UserRepository = userRepository ,
7066 Client = client ,
7167 } ;
7268
@@ -95,6 +91,14 @@ public static ReadOnlyPublisher FromHandlerConfig(NomadKuboEventStreamHandlerCon
9591 ProjectDependencyRepository = projectDependencyRepository ,
9692 } ;
9793
94+ ReadOnlyUserRoleCollection readOnlyUserRoleCollection = new ReadOnlyUserRoleCollection
95+ {
96+ Id = handlerConfig . RoamingId ,
97+ Inner = handlerConfig . RoamingValue ,
98+ Client = client ,
99+ UserRepository = userRepository ,
100+ } ;
101+
98102 return new ReadOnlyPublisher
99103 {
100104 Id = handlerConfig . RoamingId ,
0 commit comments