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

            var status = await _subscriptionsService.GetSubscriptionStatusForChannel(ctx.Channel.Id);

            var embed = _subscriptionEmbedGenerator.BuildStatus(status);

            await ctx.RespondAsync(embed : embed);
        }