BotUser registriert und eingeloggt

Methoden zum Bot User registrieren und einloggen hinzugefügt aber auskommentiert, weil dies nur zu Debug bzw. Test gründen benutzt wurde
This commit is contained in:
Erik
2024-08-28 12:01:03 +02:00
parent ce490cf68f
commit d9976ff520
21 changed files with 391 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
using System;
using System.Diagnostics;
using System.Text.RegularExpressions;
using System.Threading;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
@@ -159,6 +160,19 @@ namespace bib_talk
}
}
}
// Benutzt um 100 User accounts zu erstellen
//private void RegisterNewBots(object sender, RoutedEventArgs e)
//{
// for (int i = 10; i <= 100; i++)
// {
// string name = "Bot";
// string password = "Bot123";
// string email = "bot@edu.bib.de";
// string birthday = "12.12.2000";
// registerManager.RegisterBots(name + i, password, i + email, birthday);
// Thread.Sleep(1000);
// }
//}
}
}