feat: Removes some logging that was used to debug.

This commit is contained in:
2025-01-09 16:45:09 -05:00
parent bf71b725f6
commit c4410706fd
3 changed files with 6 additions and 2 deletions

View File

@@ -59,7 +59,9 @@ struct ApiController: RouteCollection {
@Sendable
func employeesIndex(req: Request) async throws -> [Employee.DTO] {
var dbQuery = Employee.query(on: req.db)
var dbQuery = Employee
.query(on: req.db)
.sort(\.$lastName)
let params = try req.query.decode(EmployeesIndexQuery.self)
if params.active == true {