From 05095f8ba273b7424f7f6ca5b6f69a843b78f429 Mon Sep 17 00:00:00 2001 From: dotansimha Date: Tue, 24 Jan 2017 10:41:33 +0200 Subject: [PATCH] Step 4.13: Create chats collection --- api/server/collections/chats.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 api/server/collections/chats.ts diff --git a/api/server/collections/chats.ts b/api/server/collections/chats.ts new file mode 100644 index 000000000..e61c71528 --- /dev/null +++ b/api/server/collections/chats.ts @@ -0,0 +1,4 @@ +import { MongoObservable } from 'meteor-rxjs'; +import { Chat } from '../models'; + +export const Chats = new MongoObservable.Collection('chats');