Skip to content

Commit

Permalink
Step 17.2: Change initial parties accordingly
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha committed Nov 27, 2016
1 parent b7ae2d7 commit 9ac3797
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions server/imports/fixtures/parties.ts
Expand Up @@ -6,17 +6,23 @@ export function loadParties() {
const parties: Party[] = [{
name: 'Dubstep-Free Zone',
description: 'Can we please just for an evening not listen to dubstep.',
location: 'Palo Alto',
location: {
name: 'Palo Alto'
},
public: true
}, {
name: 'All dubstep all the time',
description: 'Get it on!',
location: 'Palo Alto',
location: {
name: 'Palo Alto'
},
public: true
}, {
name: 'Savage lounging',
description: 'Leisure suit required. And only fiercest manners.',
location: 'San Francisco',
location: {
name: 'San Francisco'
},
public: false
}];

Expand Down

0 comments on commit 9ac3797

Please sign in to comment.