FEATURE: show tags in search results

This commit is contained in:
Neil Lalonde
2017-08-25 11:52:18 -04:00
parent cdcc5d6174
commit 2c56f8df7c
14 changed files with 162 additions and 2 deletions

View File

@ -108,6 +108,16 @@ export default function() {
id: 1234
}]
});
} else if (request.queryParams.q === 'evil') {
return response({
posts: [{
id: 1234
}],
tags: [{
id: 6,
name: 'eviltrout'
}]
});
}
return response({});