Skip to content

Commit

Permalink
Step 10.7: Update parties initials
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela authored and DAB0mB committed Dec 14, 2016
1 parent b9592e5 commit 9a84420
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions server/imports/fixtures/parties.ts
Expand Up @@ -6,15 +6,18 @@ 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: 'Palo Alto',
public: true
}, {
name: 'All dubstep all the time',
description: 'Get it on!',
location: 'Palo Alto'
location: 'Palo Alto',
public: true
}, {
name: 'Savage lounging',
description: 'Leisure suit required. And only fiercest manners.',
location: 'San Francisco'
location: 'San Francisco',
public: false
}];

parties.forEach((party: Party) => Parties.insert(party));
Expand Down

0 comments on commit 9a84420

Please sign in to comment.