Example #1
0
        public async Task <IActionResult> Activate(Poll poll)
        {
            await _votingService.Activate(poll.Id);

            return(RedirectToAction(nameof(PollController.Index)));
        }