Merge branch 'AuthMe:master' into feature/upstream

This commit is contained in:
Dreeam
2023-12-05 06:05:10 -05:00
13 changed files with 491 additions and 211 deletions
@@ -36,4 +36,12 @@ public class MigraterYamlFileResource extends YamlFileResource {
}
return singleQuoteYaml;
}
// Because we set the YAML object to put strings in single quotes, this method by default uses that YAML object
// and also puts all paths as single quotes. Override to just always return the same string since we know those
// are only message names (so never any conflicting strings like "true" or "0").
@Override
protected String escapePathElementIfNeeded(String path) {
return path;
}
}