Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Changed return data to include full event details.
  • Loading branch information
nantonacci committed Apr 29, 2020
1 parent 20416b2 commit 0ca8998
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/calendar/calendar-model.js
Expand Up @@ -24,7 +24,7 @@ function register(event_id, user_id) {
function getAttn(user_id) {
return db('attendees as a')
.join('phoenixEvent as p', 'p.event_id', '=', 'a.event_id')
.select('p.summary')
.select('*')
.where({ 'a.user_id': user_id });
}

Expand Down

0 comments on commit 0ca8998

Please sign in to comment.