Fix jobs order should be descend by post date

This commit is contained in:
Berkeley Martinez
2015-11-19 17:31:00 -08:00
parent a60e0215d2
commit 3b63e406ed

View File

@ -3,7 +3,8 @@ const whereFilt = {
isFilled: false, isFilled: false,
isPaid: true, isPaid: true,
isApproved: true isApproved: true
} },
order: 'postedOn DESC'
}; };
export default function getJobServices(app) { export default function getJobServices(app) {