Added work remaining url for remote extraction client

This commit is contained in:
2026-06-12 19:03:31 +02:00
parent 4c637de442
commit f1cffa7dfa
8 changed files with 220 additions and 4 deletions
@@ -83,6 +83,12 @@ public sealed class ManagedTruthStore : IManagedTruthStore
return true;
}
/// <inheritdoc />
public bool Exists(Guid itemId)
{
return File.Exists(GetPath(itemId));
}
private string GetPath(Guid itemId)
{
return Path.Combine(_applicationPaths.PluginConfigurationsPath, "JRay", "truth", itemId.ToString("D") + ".json");