feat(uns): carry created id on UnsMutationResult for equipment create

This commit is contained in:
Joseph Doherty
2026-06-11 14:16:21 -04:00
parent 1f904c4502
commit 7d91737dac
3 changed files with 22 additions and 2 deletions
@@ -539,7 +539,7 @@ public sealed class UnsTreeService(IDbContextFactory<OtOpcUaConfigDbContext> dbF
Enabled = input.Enabled,
});
await db.SaveChangesAsync(ct);
return new UnsMutationResult(true, null);
return new UnsMutationResult(true, null, equipmentId);
}
/// <inheritdoc />