Skip to content

Commit

Permalink
Step 2.1: Add meteor collections
Browse files Browse the repository at this point in the history
  • Loading branch information
DAB0mB authored and Dotan Simha committed Nov 23, 2016
1 parent 3b3c649 commit 8912a8a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/collections.js
@@ -0,0 +1,4 @@
import { Mongo } from 'meteor/mongo';

export const Chats = new Mongo.Collection('chats');
export const Messages = new Mongo.Collection('messages');

1 comment on commit 8912a8a

@winsurfwon
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bootstrapping was easy and well done. I am assuming I should make a directory called lib that has a file called coolectionsions.js ie. C:\Users\Amy\Bootstrapping\whatsapp\lib\collections.js with 4 lines.

Please sign in to comment.