File tree 3 files changed +9
-0
lines changed
3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -268,6 +268,9 @@ func (s *GroupSyncSettings) Set(v string) error {
268
268
}
269
269
270
270
func (s * GroupSyncSettings ) String () string {
271
+ if s .Mapping == nil {
272
+ s .Mapping = make (map [string ][]uuid.UUID )
273
+ }
271
274
return runtimeconfig .JSONString (s )
272
275
}
273
276
Original file line number Diff line number Diff line change @@ -168,6 +168,9 @@ func (s *OrganizationSyncSettings) Set(v string) error {
168
168
}
169
169
170
170
func (s * OrganizationSyncSettings ) String () string {
171
+ if s .Mapping == nil {
172
+ s .Mapping = make (map [string ][]uuid.UUID )
173
+ }
171
174
return runtimeconfig .JSONString (s )
172
175
}
173
176
Original file line number Diff line number Diff line change @@ -286,5 +286,8 @@ func (s *RoleSyncSettings) Set(v string) error {
286
286
}
287
287
288
288
func (s * RoleSyncSettings ) String () string {
289
+ if s .Mapping == nil {
290
+ s .Mapping = make (map [string ][]string )
291
+ }
289
292
return runtimeconfig .JSONString (s )
290
293
}
You can’t perform that action at this time.
0 commit comments