Simplify DB to six tables and load credentials via Always Encrypted SonicCredential.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-29 08:23:55 +02:00
co-authored by Cursor
parent 4d19873776
commit dcfcb5289d
15 changed files with 1356 additions and 461 deletions
@@ -34,10 +34,12 @@ internal static class Program
.GetAwaiter()
.GetResult();
if (setupResult.IsReady)
if (!setupResult.IsReady)
{
using SetupWizardForm setupForm =
new(coordinator);
new(
coordinator,
isSettingsMode: false);
DialogResult setupDialogResult =
setupForm.ShowDialog();
@@ -57,7 +59,7 @@ internal static class Program
{
MessageBox.Show(
"Die Einrichtung ist noch nicht vollständig.",
"Setup unvollständig",
"Einstellungen unvollständig",
MessageBoxButtons.OK,
MessageBoxIcon.Warning);
@@ -77,4 +79,4 @@ internal static class Program
MessageBoxIcon.Error);
}
}
}
}