예제 #1
0
        public async Task EnableAllNotificationsAsync(CommandContext ctx)
        {
            await ctx.TriggerTypingAsync();

            await _subscriptionsService.AddAllSubscriptionsAsync(ctx.Guild.Id, ctx.Channel.Id);

            var embed = _subscriptionEmbedGenerator.BuildMessageOnAddAll();
            await ctx.RespondAsync(string.Empty, false, embed);
        }