Skip to content
This repository was archived by the owner on May 3, 2022. It is now read-only.

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
clement128 committed Aug 20, 2020
1 parent bc846af commit 826e8be
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,11 @@ public async Task<IList<MostViewEntityDto>> GetMostViewedEntities(string entityT
{
return await _activityTypeRepository.List().Where(x => x.EntityTypeId == entityTypeId).Take(10).ToListAsync();
}

[HttpGet("test")]
public IActionResult Test(string userInput)
{
return Ok(userInput);
}
}
}

0 comments on commit 826e8be

Please sign in to comment.