()
| 307 | } |
| 308 | |
| 309 | func (s *GroupSyncSettings) String() string { |
| 310 | if s.Mapping == nil { |
| 311 | s.Mapping = make(map[string][]uuid.UUID) |
| 312 | } |
| 313 | return runtimeconfig.JSONString(s) |
| 314 | } |
| 315 | |
| 316 | func (s *GroupSyncSettings) MarshalJSON() ([]byte, error) { |
| 317 | if s.Mapping == nil { |
nothing calls this directly
no test coverage detected