Adjust filter endpoint to use psot

This commit is contained in:
jvyden 2021-10-23 05:10:42 -04:00
commit b8573f3f06
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -28,7 +28,7 @@ namespace LBPUnion.ProjectLighthouse.Controllers {
return this.Ok(); return this.Ok();
} }
[HttpGet("filter")] [HttpPost("filter")]
public IActionResult Filter() { public IActionResult Filter() {
return this.Ok(); return this.Ok();
} }