Skip to content

Commit

Permalink
adds dummy data to mock server response
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Whitton committed Dec 17, 2014
1 parent fd63857 commit bf50673
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions server/mocks/logos.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@ module.exports = function(app) {
res.send({
"logos": {
"id": req.params.id,
"title": "school #" + req.params.id,
"font": "font_id",
"flowers": [1,2,3],
"palette": "palette_id",
"arrangement": "arrangement_string",
"stringified": "stringified_from_fabricjs"
"name": "school #" + req.params.id,
"font": 2,
"flowerIds": [1,2,3],
"palette": { id: 3, colors: [
"#e5b113"
, "#e57613"
]},
"arrangement": { id: 2, className: 'bottom' }
}
});
});
Expand Down

0 comments on commit bf50673

Please sign in to comment.