17 lines
525 B
C#
17 lines
525 B
C#
using JOBot.Proto;
|
|
using JOBot.TClient.Services;
|
|
using Telegram.Bot.Types;
|
|
using Telegram.Bot.Types.Enums;
|
|
|
|
namespace JOBot.TClient.Commands.Buttons;
|
|
|
|
public class EulaAgreementButtonCommand(PrepareUserService prepareUserService) : IAuthorizedTelegramCommand
|
|
{
|
|
public async Task ExecuteAsync(Update update, GetUserResponse user, CancellationToken ct)
|
|
{
|
|
if (update.Type != UpdateType.Message || update.Message?.From == null)
|
|
return;
|
|
|
|
await prepareUserService.AcceptEula(update, ct);
|
|
}
|
|
} |