Beispiel #1
0
        public async Task <IActionResult> GetLoggedInUserEventsAsync(
            [FromHeader(Name = "userId")] int userId)
        {
            var events = await _eventsService.GetParticipatingByIdAsync(userId);

            return(Ok(events));
        }