40fc435bda
- Add DeleteSessionAsync to ISessionStore/SessionService (unpublish portfolio card, remove bot-created empty forum topic, update batch message). - Add DeleteSessionForCurrentUserAsync to AuthorizedSessionService with audit log. - Add delete button + confirmation dialog to GroupDetails.razor. - Extend dashboard Playwright tests with edit persistence and delete verification. - Update AuthorizedSessionServiceTests with delete authorization coverage. - Mark issue #150 as done in tests/e2e/README.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
12 lines
376 B
C#
12 lines
376 B
C#
namespace GmRelay.E2E.Runner;
|
|
|
|
public sealed class RunnerConfig
|
|
{
|
|
public required int ApiId { get; init; }
|
|
public required string ApiHash { get; init; }
|
|
public required string PhoneNumber { get; init; }
|
|
public required string BotUsername { get; init; }
|
|
public required string BotToken { get; init; }
|
|
public required string DatabaseUrl { get; init; }
|
|
}
|