├── .editorconfig ├── .gitignore ├── .tortilla └── manuals │ ├── templates │ ├── footer.tmpl │ ├── root.tmpl │ ├── step1.tmpl │ ├── step10.tmpl │ ├── step11.tmpl │ ├── step12.tmpl │ ├── step13.tmpl │ ├── step14.tmpl │ ├── step15.tmpl │ ├── step16.tmpl │ ├── step17.tmpl │ ├── step18.tmpl │ ├── step2.tmpl │ ├── step3.tmpl │ ├── step4.tmpl │ ├── step5.tmpl │ ├── step6.tmpl │ ├── step7.tmpl │ ├── step8.tmpl │ └── step9.tmpl │ └── views │ ├── medium │ ├── root.md │ ├── step1.md │ ├── step10.md │ ├── step11.md │ ├── step12.md │ ├── step13.md │ ├── step14.md │ ├── step15.md │ ├── step16.md │ ├── step17.md │ ├── step18.md │ ├── step2.md │ ├── step3.md │ ├── step4.md │ ├── step5.md │ ├── step6.md │ ├── step7.md │ ├── step8.md │ └── step9.md │ ├── root.md │ ├── step1.md │ ├── step10.md │ ├── step11.md │ ├── step12.md │ ├── step13.md │ ├── step14.md │ ├── step15.md │ ├── step16.md │ ├── step17.md │ ├── step18.md │ ├── step2.md │ ├── step3.md │ ├── step4.md │ ├── step5.md │ ├── step6.md │ ├── step7.md │ ├── step8.md │ └── step9.md ├── README.md ├── api ├── .gitignore ├── .meteor │ ├── .finished-upgraders │ ├── .gitignore │ ├── .id │ ├── packages │ ├── platforms │ ├── release │ └── versions ├── declarations.d.ts ├── node_modules ├── package-lock.json ├── package.json ├── private │ └── settings.json ├── server │ ├── collections │ │ ├── chats.ts │ │ ├── index.ts │ │ ├── messages.ts │ │ ├── pictures.ts │ │ └── users.ts │ ├── main.ts │ ├── methods.ts │ ├── models.ts │ ├── publications.ts │ └── services │ │ ├── facebook.ts │ │ └── fcm.ts └── tsconfig.json ├── config.xml ├── google-services.json ├── ionic.config.json ├── meteor-client.config.json ├── package.json ├── resources ├── README.md ├── android │ ├── icon │ │ ├── drawable-hdpi-icon.png │ │ ├── drawable-ldpi-icon.png │ │ ├── drawable-mdpi-icon.png │ │ ├── drawable-xhdpi-icon.png │ │ ├── drawable-xxhdpi-icon.png │ │ └── drawable-xxxhdpi-icon.png │ └── splash │ │ ├── drawable-land-hdpi-screen.png │ │ ├── drawable-land-ldpi-screen.png │ │ ├── drawable-land-mdpi-screen.png │ │ ├── drawable-land-xhdpi-screen.png │ │ ├── drawable-land-xxhdpi-screen.png │ │ ├── drawable-land-xxxhdpi-screen.png │ │ ├── drawable-port-hdpi-screen.png │ │ ├── drawable-port-ldpi-screen.png │ │ ├── drawable-port-mdpi-screen.png │ │ ├── drawable-port-xhdpi-screen.png │ │ ├── drawable-port-xxhdpi-screen.png │ │ └── drawable-port-xxxhdpi-screen.png ├── icon.png ├── ios │ ├── icon │ │ ├── icon-1024.png │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x.png │ │ ├── icon-50.png │ │ ├── icon-50@2x.png │ │ ├── icon-60.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ ├── icon-83.5@2x.png │ │ ├── icon-small.png │ │ ├── icon-small@2x.png │ │ ├── icon-small@3x.png │ │ ├── icon.png │ │ └── icon@2x.png │ └── splash │ │ ├── Default-568h@2x~iphone.png │ │ ├── Default-667h.png │ │ ├── Default-736h.png │ │ ├── Default-Landscape-736h.png │ │ ├── Default-Landscape@2x~ipad.png │ │ ├── Default-Landscape@~ipadpro.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default-Portrait@2x~ipad.png │ │ ├── Default-Portrait@~ipadpro.png │ │ ├── Default-Portrait~ipad.png │ │ ├── Default@2x~iphone.png │ │ ├── Default@2x~universal~anyany.png │ │ └── Default~iphone.png └── splash.png ├── src ├── app │ ├── app.component.ts │ ├── app.html │ ├── app.module.ts │ ├── app.scss │ └── main.ts ├── assets │ ├── chat-background.jpg │ ├── default-profile-pic.svg │ ├── icon │ │ └── favicon.ico │ ├── message-mine.png │ └── message-other.png ├── declarations.d.ts ├── index.html ├── ionic │ └── sms-receiver │ │ └── index.ts ├── manifest.json ├── pages │ ├── chats │ │ ├── chats-options.html │ │ ├── chats-options.scss │ │ ├── chats-options.ts │ │ ├── chats.html │ │ ├── chats.scss │ │ ├── chats.ts │ │ ├── new-chat.html │ │ ├── new-chat.scss │ │ └── new-chat.ts │ ├── login │ │ ├── facebook.html │ │ ├── facebook.scss │ │ ├── facebook.ts │ │ ├── login.html │ │ ├── login.scss │ │ └── login.ts │ ├── messages │ │ ├── location-message.html │ │ ├── location-message.scss │ │ ├── location-message.ts │ │ ├── messages-attachments.html │ │ ├── messages-attachments.scss │ │ ├── messages-attachments.ts │ │ ├── messages-options.html │ │ ├── messages-options.scss │ │ ├── messages-options.ts │ │ ├── messages.html │ │ ├── messages.scss │ │ ├── messages.ts │ │ ├── show-picture.html │ │ ├── show-picture.scss │ │ └── show-picture.ts │ ├── profile │ │ ├── profile.html │ │ ├── profile.scss │ │ └── profile.ts │ └── verification │ │ ├── verification.html │ │ ├── verification.scss │ │ └── verification.ts ├── service-worker.js ├── services │ ├── phone.ts │ └── picture.ts └── theme │ └── variables.scss ├── tsconfig.json ├── tslint.json └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.gitignore -------------------------------------------------------------------------------- /.tortilla/manuals/templates/footer.tmpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.tortilla/manuals/templates/root.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/root.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step1.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step1.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step10.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step10.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step11.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step11.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step12.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step12.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step13.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step13.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step14.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step14.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step15.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step15.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step16.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step16.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step17.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step17.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step18.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step18.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step2.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step2.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step3.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step3.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step4.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step4.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step5.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step5.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step6.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step6.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step7.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step7.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step8.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step8.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/templates/step9.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/templates/step9.tmpl -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/root.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/root.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step1.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step10.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step11.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step12.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step13.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step14.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step15.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step16.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step17.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step18.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step2.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step3.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step4.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step5.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step6.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step7.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step8.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/medium/step9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/medium/step9.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/root.md: -------------------------------------------------------------------------------- 1 | ../../../README.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step1.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step10.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step11.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step12.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step13.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step14.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step15.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step16.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step17.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step18.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step2.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step3.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step4.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step5.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step6.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step7.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step8.md -------------------------------------------------------------------------------- /.tortilla/manuals/views/step9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/.tortilla/manuals/views/step9.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/README.md -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /api/.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /api/.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /api/.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/.meteor/.id -------------------------------------------------------------------------------- /api/.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/.meteor/packages -------------------------------------------------------------------------------- /api/.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /api/.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.6-rc.7 2 | -------------------------------------------------------------------------------- /api/.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/.meteor/versions -------------------------------------------------------------------------------- /api/declarations.d.ts: -------------------------------------------------------------------------------- 1 | ../src/declarations.d.ts -------------------------------------------------------------------------------- /api/node_modules: -------------------------------------------------------------------------------- 1 | ../node_modules -------------------------------------------------------------------------------- /api/package-lock.json: -------------------------------------------------------------------------------- 1 | ../package-lock.json -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- 1 | ../package.json -------------------------------------------------------------------------------- /api/private/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/private/settings.json -------------------------------------------------------------------------------- /api/server/collections/chats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/server/collections/chats.ts -------------------------------------------------------------------------------- /api/server/collections/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/server/collections/index.ts -------------------------------------------------------------------------------- /api/server/collections/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/server/collections/messages.ts -------------------------------------------------------------------------------- /api/server/collections/pictures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/server/collections/pictures.ts -------------------------------------------------------------------------------- /api/server/collections/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/server/collections/users.ts -------------------------------------------------------------------------------- /api/server/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/server/main.ts -------------------------------------------------------------------------------- /api/server/methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/server/methods.ts -------------------------------------------------------------------------------- /api/server/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/server/models.ts -------------------------------------------------------------------------------- /api/server/publications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/server/publications.ts -------------------------------------------------------------------------------- /api/server/services/facebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/server/services/facebook.ts -------------------------------------------------------------------------------- /api/server/services/fcm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/server/services/fcm.ts -------------------------------------------------------------------------------- /api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/api/tsconfig.json -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/config.xml -------------------------------------------------------------------------------- /google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/google-services.json -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/ionic.config.json -------------------------------------------------------------------------------- /meteor-client.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/meteor-client.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/package.json -------------------------------------------------------------------------------- /resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/README.md -------------------------------------------------------------------------------- /resources/android/icon/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/icon/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/icon/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/icon/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/icon/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/icon/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/icon/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-1024.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-40.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-40@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-50.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-60.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-72.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-76.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-83.5@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-small.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon.png -------------------------------------------------------------------------------- /resources/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/splash/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/splash/Default-667h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/splash/Default-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/splash/Default-Landscape-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/splash/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape@~ipadpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/splash/Default-Landscape@~ipadpro.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/splash/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/splash/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait@~ipadpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/splash/Default-Portrait@~ipadpro.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/splash/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/splash/Default@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default@2x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/splash/Default@2x~universal~anyany.png -------------------------------------------------------------------------------- /resources/ios/splash/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/ios/splash/Default~iphone.png -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/resources/splash.png -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/app/app.html -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/app/app.scss -------------------------------------------------------------------------------- /src/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/app/main.ts -------------------------------------------------------------------------------- /src/assets/chat-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/assets/chat-background.jpg -------------------------------------------------------------------------------- /src/assets/default-profile-pic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/assets/default-profile-pic.svg -------------------------------------------------------------------------------- /src/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/assets/icon/favicon.ico -------------------------------------------------------------------------------- /src/assets/message-mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/assets/message-mine.png -------------------------------------------------------------------------------- /src/assets/message-other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/assets/message-other.png -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/declarations.d.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/index.html -------------------------------------------------------------------------------- /src/ionic/sms-receiver/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/ionic/sms-receiver/index.ts -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/pages/chats/chats-options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/chats/chats-options.html -------------------------------------------------------------------------------- /src/pages/chats/chats-options.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/chats/chats-options.scss -------------------------------------------------------------------------------- /src/pages/chats/chats-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/chats/chats-options.ts -------------------------------------------------------------------------------- /src/pages/chats/chats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/chats/chats.html -------------------------------------------------------------------------------- /src/pages/chats/chats.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/chats/chats.scss -------------------------------------------------------------------------------- /src/pages/chats/chats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/chats/chats.ts -------------------------------------------------------------------------------- /src/pages/chats/new-chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/chats/new-chat.html -------------------------------------------------------------------------------- /src/pages/chats/new-chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/chats/new-chat.scss -------------------------------------------------------------------------------- /src/pages/chats/new-chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/chats/new-chat.ts -------------------------------------------------------------------------------- /src/pages/login/facebook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/login/facebook.html -------------------------------------------------------------------------------- /src/pages/login/facebook.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/login/facebook.scss -------------------------------------------------------------------------------- /src/pages/login/facebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/login/facebook.ts -------------------------------------------------------------------------------- /src/pages/login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/login/login.html -------------------------------------------------------------------------------- /src/pages/login/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/login/login.scss -------------------------------------------------------------------------------- /src/pages/login/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/login/login.ts -------------------------------------------------------------------------------- /src/pages/messages/location-message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/messages/location-message.html -------------------------------------------------------------------------------- /src/pages/messages/location-message.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/messages/location-message.scss -------------------------------------------------------------------------------- /src/pages/messages/location-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/messages/location-message.ts -------------------------------------------------------------------------------- /src/pages/messages/messages-attachments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/messages/messages-attachments.html -------------------------------------------------------------------------------- /src/pages/messages/messages-attachments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/messages/messages-attachments.scss -------------------------------------------------------------------------------- /src/pages/messages/messages-attachments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/messages/messages-attachments.ts -------------------------------------------------------------------------------- /src/pages/messages/messages-options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/messages/messages-options.html -------------------------------------------------------------------------------- /src/pages/messages/messages-options.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/messages/messages-options.scss -------------------------------------------------------------------------------- /src/pages/messages/messages-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/messages/messages-options.ts -------------------------------------------------------------------------------- /src/pages/messages/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/messages/messages.html -------------------------------------------------------------------------------- /src/pages/messages/messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/messages/messages.scss -------------------------------------------------------------------------------- /src/pages/messages/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/messages/messages.ts -------------------------------------------------------------------------------- /src/pages/messages/show-picture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/messages/show-picture.html -------------------------------------------------------------------------------- /src/pages/messages/show-picture.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/messages/show-picture.scss -------------------------------------------------------------------------------- /src/pages/messages/show-picture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/messages/show-picture.ts -------------------------------------------------------------------------------- /src/pages/profile/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/profile/profile.html -------------------------------------------------------------------------------- /src/pages/profile/profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/profile/profile.scss -------------------------------------------------------------------------------- /src/pages/profile/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/profile/profile.ts -------------------------------------------------------------------------------- /src/pages/verification/verification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/verification/verification.html -------------------------------------------------------------------------------- /src/pages/verification/verification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/verification/verification.scss -------------------------------------------------------------------------------- /src/pages/verification/verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/pages/verification/verification.ts -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/services/phone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/services/phone.ts -------------------------------------------------------------------------------- /src/services/picture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/services/picture.ts -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/Ionic2CLI-Meteor-WhatsApp/HEAD/webpack.config.js --------------------------------------------------------------------------------