MatthewLacerda2 / FixFlow

A platform for business to schedule maintenance and visits on-site
Apache License 2.0
0 stars 0 forks source link

Non async Filtered GET endpoints #60

Closed MatthewLacerda2 closed 2 months ago

MatthewLacerda2 commented 2 months ago

All Filtered GET are currently:

public IActionResult ReadSchedules(string Id) {

when it should be

public async Task<IActionResult> ReadSchedules(string Id) {

This is marked as a bug since it makes openapi's codegen to error when generating for Flutter