File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 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 {
268268}
269269
270270func (s * GroupSyncSettings ) String () string {
271+ if s .Mapping == nil {
272+ s .Mapping = make (map [string ][]uuid.UUID )
273+ }
271274 return runtimeconfig .JSONString (s )
272275}
273276
Original file line number Diff line number Diff line change @@ -168,6 +168,9 @@ func (s *OrganizationSyncSettings) Set(v string) error {
168168}
169169
170170func (s * OrganizationSyncSettings ) String () string {
171+ if s .Mapping == nil {
172+ s .Mapping = make (map [string ][]uuid.UUID )
173+ }
171174 return runtimeconfig .JSONString (s )
172175}
173176
Original file line number Diff line number Diff line change @@ -284,5 +284,8 @@ func (s *RoleSyncSettings) Set(v string) error {
284284}
285285
286286func (s * RoleSyncSettings ) String () string {
287+ if s .Mapping == nil {
288+ s .Mapping = make (map [string ][]string )
289+ }
287290 return runtimeconfig .JSONString (s )
288291}
You can’t perform that action at this time.
0 commit comments