Merge pull request #4572 from FreeCodeCamp/fix/job-order

Fix jobs order should be descend by post date
This commit is contained in:
Quincy Larson
2015-11-19 21:45:27 -06:00

View File

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