This commit is contained in:
2026-02-26 12:52:58 -08:00
parent b7adb7dae9
commit 5d90cc9cc6
2 changed files with 201 additions and 181 deletions

View File

@@ -647,6 +647,11 @@ namespace raven_integration
}
public static string TagJsonFromStrings(string tagNameStart, params string[] tags)
{
return string.Join(", ", tags.Select(t => $"\"{tagNameStart}-{t}\""));
}