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); }