Added new channel for testing

This commit is contained in:
2026-03-22 00:10:59 -04:00
parent d0839308ef
commit 69a4951579

View File

@@ -75,7 +75,14 @@ var channel = await db.Create("channels", new Channels
CreatedAt = DateTime.UtcNow
});
Console.WriteLine($"Channel created: {ToJsonString(channel)}");
var channel2 = await db.Create("files", new Channels
{
Name = "files",
CreatedAt = DateTime.UtcNow.Subtract(new TimeSpan(0, 4, 0,0))
});
Console.WriteLine($"Channel created: {ToJsonString(channel2)}");
var channelId = GetRecordId(channel.Id);
Console.WriteLine($"Resolved channelId: {channelId}");