Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| import debugFactory from 'debug'; | |
| import assign from 'object.assign'; | |
| const debug = debugFactory('fcc:services:hikes'); | |
| export default function hikesService(app) { | |
| const Challenge = app.models.Challenge; | |
| return { | |
| name: 'hikes', | |
| read: (req, resource, { dashedName } = {}, config, cb) => { | |
| const query = { | |
| where: { challengeType: '6' }, | |
| order: ['order ASC', 'suborder ASC' ] | |
| }; | |
| debug('dashedName', dashedName); | |
| if (dashedName) { | |
| assign(query.where, { | |
| dashedName: { like: dashedName, options: 'i' } | |
| }); | |
| } | |
| debug('query', query); | |
| Challenge.find(query, (err, hikes) => { | |
| if (err) { | |
| return cb(err); | |
| } | |
| cb(null, hikes); | |
| }); | |
| } | |
| }; | |
| } |