Ejemplo n.º 1
0
        public async Task <Models.Squad> Get()
        {
            var userId = User.FindFirst(ClaimTypes.NameIdentifier)?.Value; //TODO move to currentUserContext
            var squad  = await _squadService.GetOrCreateAsync(userId);

            return(squad);
        }