Exemplo n.º 1
0
        public async Task <ActionResult> Claim()
        {
            var userId = User.FindFirst(ClaimTypes.NameIdentifier)?.Value; //TODO move to currentUserContext
            await _matchService.ClaimAsync(new Guid(userId));

            return(Ok());
        }