about summary refs log tree commit diff
path: root/Utilities/LibMatrix.DevTestBot/Bot/Commands/DbgAniRainbowTest.cs
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-04-23 22:15:00 +0200
committerRory& <root@rory.gay>2025-04-23 22:15:14 +0200
commit17288cf70c97ea48c310ab876ee44554c09e8fe0 (patch)
treea8aecca8602ee52b6487651473a4c2fa433622b2 /Utilities/LibMatrix.DevTestBot/Bot/Commands/DbgAniRainbowTest.cs
parentAdd tombstone event content, URL-escape room id in synapse admin (diff)
downloadLibMatrix-17288cf70c97ea48c310ab876ee44554c09e8fe0.tar.xz
Update devtestbot to use bot utils
Diffstat (limited to '')
-rw-r--r--Utilities/LibMatrix.DevTestBot/Bot/Commands/DbgAniRainbowTest.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/Utilities/LibMatrix.DevTestBot/Bot/Commands/DbgAniRainbowTest.cs b/Utilities/LibMatrix.DevTestBot/Bot/Commands/DbgAniRainbowTest.cs

index c91261f..0dde297 100644 --- a/Utilities/LibMatrix.DevTestBot/Bot/Commands/DbgAniRainbowTest.cs +++ b/Utilities/LibMatrix.DevTestBot/Bot/Commands/DbgAniRainbowTest.cs
@@ -1,15 +1,20 @@ using System.Diagnostics; using LibMatrix.EventTypes.Spec; -using LibMatrix.ExampleBot.Bot.Interfaces; using LibMatrix.Helpers; using LibMatrix.Services; +using LibMatrix.Utilities.Bot.Interfaces; namespace ModerationBot.Commands; public class DbgAniRainbowTest(IServiceProvider services, HomeserverProviderService hsProvider, HomeserverResolverService hsResolver) : ICommand { public string Name { get; } = "ani-rainbow"; + + public string[]? Aliases => []; + public bool Unlisted => false; + public string Description { get; } = "[Debug] animated rainbow :)"; + public async Task<bool> CanInvoke(CommandContext ctx) => ctx.Room.RoomId == "!hLEefBaYvNfJwcTjmt:rory.gay"; public async Task Invoke(CommandContext ctx) {