Skip to content

Commit

Permalink
[#24] don't ignore query filters on GetAll
Browse files Browse the repository at this point in the history
  • Loading branch information
philipphoeninger committed Oct 28, 2024
1 parent 7b86f39 commit cf8b618
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion API/API.FileSharing/Controllers/Base/BaseCrudController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public ActionResult<TEntity> GetOne(int id)
[SwaggerResponse(401, "Unauthorized access attempted")]
public ActionResult<IEnumerable<string>> GetAll()
{
return Ok(MainRepo.GetAllIgnoreQueryFilters());
return Ok(MainRepo.GetAll());
}

/// <summary>
Expand Down

0 comments on commit cf8b618

Please sign in to comment.