├── .bithoundrc ├── .gitignore ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── packages ├── platforms ├── release └── versions ├── README.md ├── both ├── collections │ ├── images.collection.ts │ ├── parties.collection.ts │ └── users.collection.ts ├── methods │ ├── images.methods.ts │ └── parties.methods.ts └── models │ ├── collection-object.model.ts │ ├── image.model.ts │ ├── party.model.ts │ └── user.model.ts ├── client ├── imports │ ├── app │ │ ├── app.component.scss │ │ ├── app.component.web.html │ │ ├── app.component.web.ts │ │ ├── app.module.ts │ │ ├── app.routes.ts │ │ ├── auth │ │ │ ├── index.ts │ │ │ ├── login.component.mobile.html │ │ │ ├── login.component.mobile.ts │ │ │ ├── login.component.web.html │ │ │ ├── login.component.web.ts │ │ │ ├── recover.component.html │ │ │ ├── recover.component.ts │ │ │ ├── signup.component.html │ │ │ └── signup.component.ts │ │ ├── mobile │ │ │ ├── app.component.mobile.html │ │ │ ├── app.component.mobile.ts │ │ │ ├── index.ts │ │ │ ├── ionic.scss │ │ │ ├── parties-list.component.mobile.html │ │ │ └── parties-list.component.mobile.ts │ │ ├── parties │ │ │ ├── index.ts │ │ │ ├── parties-form.component.html │ │ │ ├── parties-form.component.scss │ │ │ ├── parties-form.component.ts │ │ │ ├── parties-list.component.html │ │ │ ├── parties-list.component.scss │ │ │ ├── parties-list.component.ts │ │ │ ├── parties-upload.component.html │ │ │ ├── parties-upload.component.scss │ │ │ ├── parties-upload.component.ts │ │ │ ├── party-details.component.html │ │ │ ├── party-details.component.scss │ │ │ └── party-details.component.ts │ │ ├── shared-components │ │ │ └── parties-list.class.ts │ │ └── shared │ │ │ ├── display-main-image.pipe.ts │ │ │ ├── display-name.pipe.ts │ │ │ ├── index.ts │ │ │ └── rsvp.pipe.ts │ └── material-layout.scss ├── index.html ├── main.scss └── main.ts ├── fonts.json ├── manuals ├── templates │ ├── root.md │ ├── step1.md │ ├── step10.md │ ├── step11.md │ ├── step12.md │ ├── step13.md │ ├── step14.md │ ├── step15.md │ ├── step16.md │ ├── step17.md │ ├── step18.md │ ├── step19.md │ ├── step2.md │ ├── step20.md │ ├── step21.md │ ├── step22.md │ ├── step23.md │ ├── step24.md │ ├── step25.md │ ├── step3.md │ ├── step4.md │ ├── step5.md │ ├── step6.md │ ├── step7.md │ ├── step8.md │ └── step9.md └── views │ ├── root.md │ ├── step1.md │ ├── step10.md │ ├── step11.md │ ├── step12.md │ ├── step13.md │ ├── step14.md │ ├── step15.md │ ├── step16.md │ ├── step17.md │ ├── step18.md │ ├── step19.md │ ├── step2.md │ ├── step20.md │ ├── step21.md │ ├── step22.md │ ├── step23.md │ ├── step24.md │ ├── step25.md │ ├── step3.md │ ├── step4.md │ ├── step5.md │ ├── step6.md │ ├── step7.md │ ├── step8.md │ └── step9.md ├── package.json ├── server ├── imports │ ├── fixtures │ │ └── parties.ts │ └── publications │ │ ├── images.ts │ │ ├── parties.ts │ │ └── users.ts └── main.ts ├── tsconfig.json ├── typings.d.ts └── typings └── jalik-ufs.d.ts /.bithoundrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/.bithoundrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .idea 4 | .meteor/local 5 | 6 | -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | dev_bundle 2 | local 3 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/.meteor/platforms -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.4.2 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/.meteor/versions -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/README.md -------------------------------------------------------------------------------- /both/collections/images.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/both/collections/images.collection.ts -------------------------------------------------------------------------------- /both/collections/parties.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/both/collections/parties.collection.ts -------------------------------------------------------------------------------- /both/collections/users.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/both/collections/users.collection.ts -------------------------------------------------------------------------------- /both/methods/images.methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/both/methods/images.methods.ts -------------------------------------------------------------------------------- /both/methods/parties.methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/both/methods/parties.methods.ts -------------------------------------------------------------------------------- /both/models/collection-object.model.ts: -------------------------------------------------------------------------------- 1 | export interface CollectionObject { 2 | _id?: string; 3 | } -------------------------------------------------------------------------------- /both/models/image.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/both/models/image.model.ts -------------------------------------------------------------------------------- /both/models/party.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/both/models/party.model.ts -------------------------------------------------------------------------------- /both/models/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/both/models/user.model.ts -------------------------------------------------------------------------------- /client/imports/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/app.component.scss -------------------------------------------------------------------------------- /client/imports/app/app.component.web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/app.component.web.html -------------------------------------------------------------------------------- /client/imports/app/app.component.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/app.component.web.ts -------------------------------------------------------------------------------- /client/imports/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/app.module.ts -------------------------------------------------------------------------------- /client/imports/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/app.routes.ts -------------------------------------------------------------------------------- /client/imports/app/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/auth/index.ts -------------------------------------------------------------------------------- /client/imports/app/auth/login.component.mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/auth/login.component.mobile.html -------------------------------------------------------------------------------- /client/imports/app/auth/login.component.mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/auth/login.component.mobile.ts -------------------------------------------------------------------------------- /client/imports/app/auth/login.component.web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/auth/login.component.web.html -------------------------------------------------------------------------------- /client/imports/app/auth/login.component.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/auth/login.component.web.ts -------------------------------------------------------------------------------- /client/imports/app/auth/recover.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/auth/recover.component.html -------------------------------------------------------------------------------- /client/imports/app/auth/recover.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/auth/recover.component.ts -------------------------------------------------------------------------------- /client/imports/app/auth/signup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/auth/signup.component.html -------------------------------------------------------------------------------- /client/imports/app/auth/signup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/auth/signup.component.ts -------------------------------------------------------------------------------- /client/imports/app/mobile/app.component.mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/mobile/app.component.mobile.html -------------------------------------------------------------------------------- /client/imports/app/mobile/app.component.mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/mobile/app.component.mobile.ts -------------------------------------------------------------------------------- /client/imports/app/mobile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/mobile/index.ts -------------------------------------------------------------------------------- /client/imports/app/mobile/ionic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/mobile/ionic.scss -------------------------------------------------------------------------------- /client/imports/app/mobile/parties-list.component.mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/mobile/parties-list.component.mobile.html -------------------------------------------------------------------------------- /client/imports/app/mobile/parties-list.component.mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/mobile/parties-list.component.mobile.ts -------------------------------------------------------------------------------- /client/imports/app/parties/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/parties/index.ts -------------------------------------------------------------------------------- /client/imports/app/parties/parties-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/parties/parties-form.component.html -------------------------------------------------------------------------------- /client/imports/app/parties/parties-form.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/parties/parties-form.component.scss -------------------------------------------------------------------------------- /client/imports/app/parties/parties-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/parties/parties-form.component.ts -------------------------------------------------------------------------------- /client/imports/app/parties/parties-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/parties/parties-list.component.html -------------------------------------------------------------------------------- /client/imports/app/parties/parties-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/parties/parties-list.component.scss -------------------------------------------------------------------------------- /client/imports/app/parties/parties-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/parties/parties-list.component.ts -------------------------------------------------------------------------------- /client/imports/app/parties/parties-upload.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/parties/parties-upload.component.html -------------------------------------------------------------------------------- /client/imports/app/parties/parties-upload.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/parties/parties-upload.component.scss -------------------------------------------------------------------------------- /client/imports/app/parties/parties-upload.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/parties/parties-upload.component.ts -------------------------------------------------------------------------------- /client/imports/app/parties/party-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/parties/party-details.component.html -------------------------------------------------------------------------------- /client/imports/app/parties/party-details.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/parties/party-details.component.scss -------------------------------------------------------------------------------- /client/imports/app/parties/party-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/parties/party-details.component.ts -------------------------------------------------------------------------------- /client/imports/app/shared-components/parties-list.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/shared-components/parties-list.class.ts -------------------------------------------------------------------------------- /client/imports/app/shared/display-main-image.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/shared/display-main-image.pipe.ts -------------------------------------------------------------------------------- /client/imports/app/shared/display-name.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/shared/display-name.pipe.ts -------------------------------------------------------------------------------- /client/imports/app/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/shared/index.ts -------------------------------------------------------------------------------- /client/imports/app/shared/rsvp.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/app/shared/rsvp.pipe.ts -------------------------------------------------------------------------------- /client/imports/material-layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/imports/material-layout.scss -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/index.html -------------------------------------------------------------------------------- /client/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/main.scss -------------------------------------------------------------------------------- /client/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/client/main.ts -------------------------------------------------------------------------------- /fonts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/fonts.json -------------------------------------------------------------------------------- /manuals/templates/root.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/root.md -------------------------------------------------------------------------------- /manuals/templates/step1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step1.md -------------------------------------------------------------------------------- /manuals/templates/step10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step10.md -------------------------------------------------------------------------------- /manuals/templates/step11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step11.md -------------------------------------------------------------------------------- /manuals/templates/step12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step12.md -------------------------------------------------------------------------------- /manuals/templates/step13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step13.md -------------------------------------------------------------------------------- /manuals/templates/step14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step14.md -------------------------------------------------------------------------------- /manuals/templates/step15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step15.md -------------------------------------------------------------------------------- /manuals/templates/step16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step16.md -------------------------------------------------------------------------------- /manuals/templates/step17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step17.md -------------------------------------------------------------------------------- /manuals/templates/step18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step18.md -------------------------------------------------------------------------------- /manuals/templates/step19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step19.md -------------------------------------------------------------------------------- /manuals/templates/step2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step2.md -------------------------------------------------------------------------------- /manuals/templates/step20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step20.md -------------------------------------------------------------------------------- /manuals/templates/step21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step21.md -------------------------------------------------------------------------------- /manuals/templates/step22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step22.md -------------------------------------------------------------------------------- /manuals/templates/step23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step23.md -------------------------------------------------------------------------------- /manuals/templates/step24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step24.md -------------------------------------------------------------------------------- /manuals/templates/step25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step25.md -------------------------------------------------------------------------------- /manuals/templates/step3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step3.md -------------------------------------------------------------------------------- /manuals/templates/step4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step4.md -------------------------------------------------------------------------------- /manuals/templates/step5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step5.md -------------------------------------------------------------------------------- /manuals/templates/step6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step6.md -------------------------------------------------------------------------------- /manuals/templates/step7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step7.md -------------------------------------------------------------------------------- /manuals/templates/step8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step8.md -------------------------------------------------------------------------------- /manuals/templates/step9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/templates/step9.md -------------------------------------------------------------------------------- /manuals/views/root.md: -------------------------------------------------------------------------------- 1 | ../../README.md -------------------------------------------------------------------------------- /manuals/views/step1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step1.md -------------------------------------------------------------------------------- /manuals/views/step10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step10.md -------------------------------------------------------------------------------- /manuals/views/step11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step11.md -------------------------------------------------------------------------------- /manuals/views/step12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step12.md -------------------------------------------------------------------------------- /manuals/views/step13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step13.md -------------------------------------------------------------------------------- /manuals/views/step14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step14.md -------------------------------------------------------------------------------- /manuals/views/step15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step15.md -------------------------------------------------------------------------------- /manuals/views/step16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step16.md -------------------------------------------------------------------------------- /manuals/views/step17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step17.md -------------------------------------------------------------------------------- /manuals/views/step18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step18.md -------------------------------------------------------------------------------- /manuals/views/step19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step19.md -------------------------------------------------------------------------------- /manuals/views/step2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step2.md -------------------------------------------------------------------------------- /manuals/views/step20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step20.md -------------------------------------------------------------------------------- /manuals/views/step21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step21.md -------------------------------------------------------------------------------- /manuals/views/step22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step22.md -------------------------------------------------------------------------------- /manuals/views/step23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step23.md -------------------------------------------------------------------------------- /manuals/views/step24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step24.md -------------------------------------------------------------------------------- /manuals/views/step25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step25.md -------------------------------------------------------------------------------- /manuals/views/step3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step3.md -------------------------------------------------------------------------------- /manuals/views/step4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step4.md -------------------------------------------------------------------------------- /manuals/views/step5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step5.md -------------------------------------------------------------------------------- /manuals/views/step6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step6.md -------------------------------------------------------------------------------- /manuals/views/step7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step7.md -------------------------------------------------------------------------------- /manuals/views/step8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step8.md -------------------------------------------------------------------------------- /manuals/views/step9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/manuals/views/step9.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/package.json -------------------------------------------------------------------------------- /server/imports/fixtures/parties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/server/imports/fixtures/parties.ts -------------------------------------------------------------------------------- /server/imports/publications/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/server/imports/publications/images.ts -------------------------------------------------------------------------------- /server/imports/publications/parties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/server/imports/publications/parties.ts -------------------------------------------------------------------------------- /server/imports/publications/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/server/imports/publications/users.ts -------------------------------------------------------------------------------- /server/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/server/main.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/typings.d.ts -------------------------------------------------------------------------------- /typings/jalik-ufs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular2.0-socially/HEAD/typings/jalik-ufs.d.ts --------------------------------------------------------------------------------