Skip to content

Commit

Permalink
Step 9.5: Add Parties collection security
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela authored and DAB0mB committed Dec 14, 2016
1 parent 7375a9d commit 2140730
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions both/collections/parties.collection.ts
@@ -1,5 +1,16 @@
import { MongoObservable } from 'meteor-rxjs';
import { Meteor } from 'meteor/meteor';

import { Party } from '../models/party.model';

export const Parties = new MongoObservable.Collection<Party>('parties');

function loggedIn() {
return !!Meteor.user();
}

Parties.allow({
insert: loggedIn,
update: loggedIn,
remove: loggedIn
});

0 comments on commit 2140730

Please sign in to comment.