├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── packages ├── platforms ├── release └── versions ├── LICENSE ├── README.md ├── client └── app.js ├── common └── db.js ├── index.html ├── server ├── methods.js └── publications.js └── views ├── forum.html └── pages ├── thread.html ├── topic.html └── topics.html /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuloptibi/angular-meteor-forum-tutorial/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuloptibi/angular-meteor-forum-tutorial/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuloptibi/angular-meteor-forum-tutorial/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.2.1 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuloptibi/angular-meteor-forum-tutorial/HEAD/.meteor/versions -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuloptibi/angular-meteor-forum-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuloptibi/angular-meteor-forum-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /client/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuloptibi/angular-meteor-forum-tutorial/HEAD/client/app.js -------------------------------------------------------------------------------- /common/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuloptibi/angular-meteor-forum-tutorial/HEAD/common/db.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuloptibi/angular-meteor-forum-tutorial/HEAD/index.html -------------------------------------------------------------------------------- /server/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuloptibi/angular-meteor-forum-tutorial/HEAD/server/methods.js -------------------------------------------------------------------------------- /server/publications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuloptibi/angular-meteor-forum-tutorial/HEAD/server/publications.js -------------------------------------------------------------------------------- /views/forum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuloptibi/angular-meteor-forum-tutorial/HEAD/views/forum.html -------------------------------------------------------------------------------- /views/pages/thread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuloptibi/angular-meteor-forum-tutorial/HEAD/views/pages/thread.html -------------------------------------------------------------------------------- /views/pages/topic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuloptibi/angular-meteor-forum-tutorial/HEAD/views/pages/topic.html -------------------------------------------------------------------------------- /views/pages/topics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuloptibi/angular-meteor-forum-tutorial/HEAD/views/pages/topics.html --------------------------------------------------------------------------------