From 8912a8ae2269d5e5b6f4bd918106459e6f451c83 Mon Sep 17 00:00:00 2001 From: DAB0mB Date: Sat, 2 Apr 2016 15:31:05 +0300 Subject: [PATCH] Step 2.1: Add meteor collections --- lib/collections.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 lib/collections.js diff --git a/lib/collections.js b/lib/collections.js new file mode 100644 index 0000000..531e6c2 --- /dev/null +++ b/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'); \ No newline at end of file