├── .firebaserc ├── .gitignore ├── LICENSE ├── README.md ├── angular.json ├── circle.yml ├── config.xml ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── firebase.json ├── ionic.config.json ├── package.json ├── renovate.json ├── resources ├── icon.png └── splash.png ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ └── components.module.ts │ ├── guards │ │ ├── auth.guard.spec.ts │ │ ├── auth.guard.ts │ │ ├── guards.module.spec.ts │ │ └── guards.module.ts │ ├── pages │ │ ├── forgot-password │ │ │ ├── forgot-password.module.ts │ │ │ ├── forgot-password.page.html │ │ │ ├── forgot-password.page.scss │ │ │ ├── forgot-password.page.spec.ts │ │ │ └── forgot-password.page.ts │ │ ├── login │ │ │ ├── login.module.ts │ │ │ ├── login.page.html │ │ │ ├── login.page.scss │ │ │ ├── login.page.spec.ts │ │ │ └── login.page.ts │ │ ├── signup │ │ │ ├── signup.module.ts │ │ │ ├── signup.page.html │ │ │ ├── signup.page.scss │ │ │ ├── signup.page.spec.ts │ │ │ └── signup.page.ts │ │ └── tabs │ │ │ ├── about │ │ │ ├── about.module.ts │ │ │ ├── about.page.html │ │ │ ├── about.page.scss │ │ │ ├── about.page.spec.ts │ │ │ └── about.page.ts │ │ │ ├── chats │ │ │ ├── channel-create │ │ │ │ ├── channel-create.module.ts │ │ │ │ ├── channel-create.page.html │ │ │ │ ├── channel-create.page.scss │ │ │ │ ├── channel-create.page.spec.ts │ │ │ │ └── channel-create.page.ts │ │ │ ├── channel-messages │ │ │ │ ├── channel-messages.module.ts │ │ │ │ ├── channel-messages.page.html │ │ │ │ ├── channel-messages.page.scss │ │ │ │ ├── channel-messages.page.spec.ts │ │ │ │ └── channel-messages.page.ts │ │ │ ├── chats.module.ts │ │ │ ├── chats.page.html │ │ │ ├── chats.page.scss │ │ │ ├── chats.page.spec.ts │ │ │ └── chats.page.ts │ │ │ ├── contacts │ │ │ ├── contacts.module.ts │ │ │ ├── contacts.page.html │ │ │ ├── contacts.page.scss │ │ │ ├── contacts.page.spec.ts │ │ │ └── contacts.page.ts │ │ │ ├── profile │ │ │ ├── profile.module.ts │ │ │ ├── profile.page.html │ │ │ ├── profile.page.scss │ │ │ ├── profile.page.spec.ts │ │ │ └── profile.page.ts │ │ │ ├── tabs.module.ts │ │ │ ├── tabs.page.html │ │ │ ├── tabs.page.scss │ │ │ ├── tabs.page.spec.ts │ │ │ └── tabs.page.ts │ ├── pipes │ │ ├── pipes.module.spec.ts │ │ ├── pipes.module.ts │ │ ├── time-ago.pipe.spec.ts │ │ ├── time-ago.pipe.ts │ │ ├── user-profile.pipe.spec.ts │ │ └── user-profile.pipe.ts │ └── services │ │ ├── chat.service.spec.ts │ │ ├── chat.service.ts │ │ ├── contact.service.spec.ts │ │ ├── contact.service.ts │ │ ├── firebase.service.spec.ts │ │ ├── firebase.service.ts │ │ ├── services.module.spec.ts │ │ ├── services.module.ts │ │ ├── user.service.spec.ts │ │ └── user.service.ts ├── assets │ ├── icon │ │ └── favicon.png │ └── images │ │ ├── group.png │ │ └── noavatar.png ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── global.scss ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── test.ts ├── theme │ └── variables.scss ├── tsconfig.app.json └── tsconfig.spec.json ├── tsconfig.json └── tslint.json /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/angular.json -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/circle.yml -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/config.xml -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/firebase.json -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/ionic.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/renovate.json -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/resources/splash.png -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/components.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/components/components.module.ts -------------------------------------------------------------------------------- /src/app/guards/auth.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/guards/auth.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guards/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/guards/auth.guard.ts -------------------------------------------------------------------------------- /src/app/guards/guards.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/guards/guards.module.spec.ts -------------------------------------------------------------------------------- /src/app/guards/guards.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/guards/guards.module.ts -------------------------------------------------------------------------------- /src/app/pages/forgot-password/forgot-password.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/forgot-password/forgot-password.module.ts -------------------------------------------------------------------------------- /src/app/pages/forgot-password/forgot-password.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/forgot-password/forgot-password.page.html -------------------------------------------------------------------------------- /src/app/pages/forgot-password/forgot-password.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/forgot-password/forgot-password.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/forgot-password/forgot-password.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/forgot-password/forgot-password.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/forgot-password/forgot-password.page.ts -------------------------------------------------------------------------------- /src/app/pages/login/login.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/login/login.module.ts -------------------------------------------------------------------------------- /src/app/pages/login/login.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/login/login.page.html -------------------------------------------------------------------------------- /src/app/pages/login/login.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/login/login.page.scss -------------------------------------------------------------------------------- /src/app/pages/login/login.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/login/login.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/login/login.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/login/login.page.ts -------------------------------------------------------------------------------- /src/app/pages/signup/signup.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/signup/signup.module.ts -------------------------------------------------------------------------------- /src/app/pages/signup/signup.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/signup/signup.page.html -------------------------------------------------------------------------------- /src/app/pages/signup/signup.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/signup/signup.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/signup/signup.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/signup/signup.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/signup/signup.page.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/about/about.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/about/about.module.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/about/about.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/about/about.page.html -------------------------------------------------------------------------------- /src/app/pages/tabs/about/about.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/tabs/about/about.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/about/about.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/about/about.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/about/about.page.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/chats/channel-create/channel-create.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/chats/channel-create/channel-create.module.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/chats/channel-create/channel-create.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/chats/channel-create/channel-create.page.html -------------------------------------------------------------------------------- /src/app/pages/tabs/chats/channel-create/channel-create.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/tabs/chats/channel-create/channel-create.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/chats/channel-create/channel-create.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/chats/channel-create/channel-create.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/chats/channel-create/channel-create.page.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/chats/channel-messages/channel-messages.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/chats/channel-messages/channel-messages.module.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/chats/channel-messages/channel-messages.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/chats/channel-messages/channel-messages.page.html -------------------------------------------------------------------------------- /src/app/pages/tabs/chats/channel-messages/channel-messages.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/chats/channel-messages/channel-messages.page.scss -------------------------------------------------------------------------------- /src/app/pages/tabs/chats/channel-messages/channel-messages.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/chats/channel-messages/channel-messages.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/chats/channel-messages/channel-messages.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/chats/channel-messages/channel-messages.page.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/chats/chats.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/chats/chats.module.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/chats/chats.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/chats/chats.page.html -------------------------------------------------------------------------------- /src/app/pages/tabs/chats/chats.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/chats/chats.page.scss -------------------------------------------------------------------------------- /src/app/pages/tabs/chats/chats.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/chats/chats.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/chats/chats.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/chats/chats.page.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/contacts/contacts.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/contacts/contacts.module.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/contacts/contacts.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/contacts/contacts.page.html -------------------------------------------------------------------------------- /src/app/pages/tabs/contacts/contacts.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/contacts/contacts.page.scss -------------------------------------------------------------------------------- /src/app/pages/tabs/contacts/contacts.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/contacts/contacts.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/contacts/contacts.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/contacts/contacts.page.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/profile/profile.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/profile/profile.module.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/profile/profile.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/profile/profile.page.html -------------------------------------------------------------------------------- /src/app/pages/tabs/profile/profile.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/profile/profile.page.scss -------------------------------------------------------------------------------- /src/app/pages/tabs/profile/profile.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/profile/profile.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/profile/profile.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/profile/profile.page.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/tabs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/tabs.module.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/tabs.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/tabs.page.html -------------------------------------------------------------------------------- /src/app/pages/tabs/tabs.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/tabs/tabs.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/tabs.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/tabs/tabs.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pages/tabs/tabs.page.ts -------------------------------------------------------------------------------- /src/app/pipes/pipes.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pipes/pipes.module.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/pipes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pipes/pipes.module.ts -------------------------------------------------------------------------------- /src/app/pipes/time-ago.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pipes/time-ago.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/time-ago.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pipes/time-ago.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/user-profile.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pipes/user-profile.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/user-profile.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/pipes/user-profile.pipe.ts -------------------------------------------------------------------------------- /src/app/services/chat.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/services/chat.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/chat.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/services/chat.service.ts -------------------------------------------------------------------------------- /src/app/services/contact.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/services/contact.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/contact.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/services/contact.service.ts -------------------------------------------------------------------------------- /src/app/services/firebase.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/services/firebase.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/firebase.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/services/firebase.service.ts -------------------------------------------------------------------------------- /src/app/services/services.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/services/services.module.spec.ts -------------------------------------------------------------------------------- /src/app/services/services.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/services/services.module.ts -------------------------------------------------------------------------------- /src/app/services/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/services/user.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/app/services/user.service.ts -------------------------------------------------------------------------------- /src/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/assets/icon/favicon.png -------------------------------------------------------------------------------- /src/assets/images/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/assets/images/group.png -------------------------------------------------------------------------------- /src/assets/images/noavatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/assets/images/noavatar.png -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/global.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coturiv/ionic-messenger-starter/HEAD/tslint.json --------------------------------------------------------------------------------