Skip to content

Commit

Permalink
Adding id field
Browse files Browse the repository at this point in the history
  • Loading branch information
mzabriskie committed May 23, 2019
1 parent 1e87ef2 commit 42c5450
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
.netlify/
npm-debug.log
node_modules/
1 change: 1 addition & 0 deletions lambda/tickets.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ exports.handler = function(event, context, callback) {
: res.data.data
.filter(r => !r.attributes.secret)
.map(r => ({
id: r.attributes.id,
title: r.attributes.title,
description: r.attributes.description,
price: r.attributes.price,
Expand Down

0 comments on commit 42c5450

Please sign in to comment.