[cm] ability to ban user for an arbitrary period

This commit is contained in:
West14
2022-04-23 21:03:33 +03:00
parent 634695d0d8
commit 5b77ef2b85
6 changed files with 66 additions and 24 deletions
+4 -1
View File
@@ -1,5 +1,7 @@
using Kruzya.TelegramBot.Core;
using BotFramework;
using Kruzya.TelegramBot.Core;
using Microsoft.Extensions.DependencyInjection;
using West.TelegramBot.ChatManagement.ParamParser;
using West.TelegramBot.ChatManagement.Service;
namespace West.TelegramBot.ChatManagement;
@@ -13,5 +15,6 @@ public class ChatManagement : Module
public override void ConfigureServices(IServiceCollection services)
{
services.AddScoped<RulesService>();
services.AddTelegramBotParameterParser<BanLength.Param, BanLength.Parser>();
}
}