├── .firebaserc ├── .github └── workflows │ ├── docker-community-push-latest.yml │ └── docker-image-tag-community-tag-push.yml ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── angular.json ├── browserslist ├── config.xml ├── deploy_pre.sh ├── deploy_prod.sh ├── env.sample ├── ionic.config.json ├── karma.conf.js ├── nginx.conf ├── package.json ├── resources └── android │ ├── icon.png │ ├── 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.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 ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── chatlib │ │ ├── conversation-detail │ │ │ ├── conversation-content │ │ │ │ ├── conversation-content.component.html │ │ │ │ ├── conversation-content.component.scss │ │ │ │ ├── conversation-content.component.spec.ts │ │ │ │ └── conversation-content.component.ts │ │ │ ├── ion-conversation-detail │ │ │ │ ├── ion-conversation-detail.component.html │ │ │ │ ├── ion-conversation-detail.component.scss │ │ │ │ ├── ion-conversation-detail.component.spec.ts │ │ │ │ └── ion-conversation-detail.component.ts │ │ │ └── message │ │ │ │ ├── avatar │ │ │ │ ├── avatar.component.html │ │ │ │ ├── avatar.component.scss │ │ │ │ ├── avatar.component.spec.ts │ │ │ │ └── avatar.component.ts │ │ │ │ ├── bubble-message │ │ │ │ ├── bubble-message.component.html │ │ │ │ ├── bubble-message.component.scss │ │ │ │ ├── bubble-message.component.spec.ts │ │ │ │ └── bubble-message.component.ts │ │ │ │ ├── buttons │ │ │ │ ├── action-button │ │ │ │ │ ├── action-button.component.html │ │ │ │ │ ├── action-button.component.scss │ │ │ │ │ ├── action-button.component.spec.ts │ │ │ │ │ └── action-button.component.ts │ │ │ │ ├── link-button │ │ │ │ │ ├── link-button.component.html │ │ │ │ │ ├── link-button.component.scss │ │ │ │ │ ├── link-button.component.spec.ts │ │ │ │ │ └── link-button.component.ts │ │ │ │ └── text-button │ │ │ │ │ ├── text-button.component.html │ │ │ │ │ ├── text-button.component.scss │ │ │ │ │ ├── text-button.component.spec.ts │ │ │ │ │ └── text-button.component.ts │ │ │ │ ├── frame │ │ │ │ ├── frame.component.html │ │ │ │ ├── frame.component.scss │ │ │ │ ├── frame.component.spec.ts │ │ │ │ └── frame.component.ts │ │ │ │ ├── image │ │ │ │ ├── image.component.html │ │ │ │ ├── image.component.scss │ │ │ │ ├── image.component.spec.ts │ │ │ │ └── image.component.ts │ │ │ │ ├── info-message │ │ │ │ ├── info-message.component.html │ │ │ │ ├── info-message.component.scss │ │ │ │ ├── info-message.component.spec.ts │ │ │ │ └── info-message.component.ts │ │ │ │ ├── message-attachment │ │ │ │ ├── message-attachment.component.html │ │ │ │ ├── message-attachment.component.scss │ │ │ │ ├── message-attachment.component.spec.ts │ │ │ │ └── message-attachment.component.ts │ │ │ │ ├── return-receipt │ │ │ │ ├── return-receipt.component.html │ │ │ │ ├── return-receipt.component.scss │ │ │ │ ├── return-receipt.component.spec.ts │ │ │ │ └── return-receipt.component.ts │ │ │ │ └── text │ │ │ │ ├── text.component.html │ │ │ │ ├── text.component.scss │ │ │ │ ├── text.component.spec.ts │ │ │ │ └── text.component.ts │ │ └── list-conversations-component │ │ │ ├── ion-list-conversations │ │ │ ├── ion-list-conversations.component.html │ │ │ ├── ion-list-conversations.component.scss │ │ │ ├── ion-list-conversations.component.spec.ts │ │ │ └── ion-list-conversations.component.ts │ │ │ └── list-conversations │ │ │ ├── list-conversations.component.html │ │ │ ├── list-conversations.component.scss │ │ │ ├── list-conversations.component.spec.ts │ │ │ └── list-conversations.component.ts │ ├── components │ │ ├── authentication │ │ │ └── login │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.scss │ │ │ │ ├── login.component.spec.ts │ │ │ │ └── login.component.ts │ │ ├── contacts-directory │ │ │ ├── contacts-directory.component.html │ │ │ ├── contacts-directory.component.scss │ │ │ ├── contacts-directory.component.spec.ts │ │ │ └── contacts-directory.component.ts │ │ ├── conversation-detail │ │ │ ├── bubble-day-message │ │ │ │ ├── bubble-day-message.component.html │ │ │ │ ├── bubble-day-message.component.scss │ │ │ │ ├── bubble-day-message.component.spec.ts │ │ │ │ └── bubble-day-message.component.ts │ │ │ ├── bubble-my-message │ │ │ │ ├── bubble-my-message.component.html │ │ │ │ ├── bubble-my-message.component.scss │ │ │ │ ├── bubble-my-message.component.spec.ts │ │ │ │ └── bubble-my-message.component.ts │ │ │ ├── bubble-others-message │ │ │ │ ├── bubble-others-message.component.html │ │ │ │ ├── bubble-others-message.component.scss │ │ │ │ ├── bubble-others-message.component.spec.ts │ │ │ │ └── bubble-others-message.component.ts │ │ │ ├── bubble-system-message │ │ │ │ ├── bubble-system-message.component.html │ │ │ │ ├── bubble-system-message.component.scss │ │ │ │ ├── bubble-system-message.component.spec.ts │ │ │ │ └── bubble-system-message.component.ts │ │ │ ├── header-conversation-detail │ │ │ │ ├── header-conversation-detail.component.html │ │ │ │ ├── header-conversation-detail.component.scss │ │ │ │ ├── header-conversation-detail.component.spec.ts │ │ │ │ └── header-conversation-detail.component.ts │ │ │ ├── message-text-area │ │ │ │ ├── message-text-area.component.html │ │ │ │ ├── message-text-area.component.scss │ │ │ │ ├── message-text-area.component.spec.ts │ │ │ │ └── message-text-area.component.ts │ │ │ └── option-header │ │ │ │ ├── option-header.component.html │ │ │ │ ├── option-header.component.scss │ │ │ │ ├── option-header.component.spec.ts │ │ │ │ └── option-header.component.ts │ │ ├── conversation-info │ │ │ ├── advanced-info-accordion │ │ │ │ ├── advanced-info-accordion.component.html │ │ │ │ ├── advanced-info-accordion.component.scss │ │ │ │ ├── advanced-info-accordion.component.spec.ts │ │ │ │ └── advanced-info-accordion.component.ts │ │ │ ├── conversation-info.module.ts │ │ │ ├── info-content │ │ │ │ ├── info-content.component.html │ │ │ │ ├── info-content.component.scss │ │ │ │ ├── info-content.component.spec.ts │ │ │ │ └── info-content.component.ts │ │ │ ├── info-direct │ │ │ │ ├── info-direct.component.html │ │ │ │ ├── info-direct.component.scss │ │ │ │ ├── info-direct.component.spec.ts │ │ │ │ └── info-direct.component.ts │ │ │ ├── info-group │ │ │ │ ├── info-group.component.html │ │ │ │ ├── info-group.component.scss │ │ │ │ ├── info-group.component.spec.ts │ │ │ │ └── info-group.component.ts │ │ │ └── info-support-group │ │ │ │ ├── info-support-group.component.html │ │ │ │ ├── info-support-group.component.scss │ │ │ │ ├── info-support-group.component.spec.ts │ │ │ │ └── info-support-group.component.ts │ │ ├── ddp-header │ │ │ ├── ddp-header.component.html │ │ │ ├── ddp-header.component.scss │ │ │ ├── ddp-header.component.spec.ts │ │ │ └── ddp-header.component.ts │ │ ├── image-viewer │ │ │ ├── image-viewer.component.html │ │ │ ├── image-viewer.component.scss │ │ │ ├── image-viewer.component.spec.ts │ │ │ └── image-viewer.component.ts │ │ ├── project-item │ │ │ ├── project-item.component.html │ │ │ ├── project-item.component.scss │ │ │ ├── project-item.component.spec.ts │ │ │ └── project-item.component.ts │ │ ├── sidebar-user-details │ │ │ ├── sidebar-user-details.component.html │ │ │ ├── sidebar-user-details.component.scss │ │ │ ├── sidebar-user-details.component.spec.ts │ │ │ └── sidebar-user-details.component.ts │ │ ├── sidebar │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.scss │ │ │ ├── sidebar.component.spec.ts │ │ │ └── sidebar.component.ts │ │ └── utils │ │ │ ├── avatar-profile │ │ │ ├── avatar-profile.component.html │ │ │ ├── avatar-profile.component.scss │ │ │ ├── avatar-profile.component.spec.ts │ │ │ └── avatar-profile.component.ts │ │ │ └── user-presence │ │ │ ├── user-presence.component.html │ │ │ ├── user-presence.component.scss │ │ │ ├── user-presence.component.spec.ts │ │ │ └── user-presence.component.ts │ ├── directives │ │ ├── autofocus.directive.ts │ │ ├── html-entities-encode.pipe.spec.ts │ │ ├── html-entities-encode.pipe.ts │ │ ├── marked.pipe.spec.ts │ │ ├── marked.pipe.ts │ │ └── safe-html.pipe.ts │ ├── pages │ │ ├── authentication │ │ │ └── login │ │ │ │ ├── login-routing.module.ts │ │ │ │ ├── login.module.ts │ │ │ │ ├── login.page.html │ │ │ │ ├── login.page.scss │ │ │ │ ├── login.page.spec.ts │ │ │ │ └── login.page.ts │ │ ├── contacts-directory │ │ │ ├── contacts-directory-routing.module.ts │ │ │ ├── contacts-directory.module.ts │ │ │ ├── contacts-directory.page.html │ │ │ ├── contacts-directory.page.scss │ │ │ ├── contacts-directory.page.spec.ts │ │ │ └── contacts-directory.page.ts │ │ ├── conversation-detail │ │ │ ├── conversation-detail-routing.module.ts │ │ │ ├── conversation-detail.module.ts │ │ │ ├── conversation-detail.page.html │ │ │ ├── conversation-detail.page.scss │ │ │ ├── conversation-detail.page.spec.ts │ │ │ └── conversation-detail.page.ts │ │ ├── conversations-list │ │ │ ├── conversations-list-routing.module.ts │ │ │ ├── conversations-list.module.ts │ │ │ ├── conversations-list.page.html │ │ │ ├── conversations-list.page.scss │ │ │ ├── conversations-list.page.spec.ts │ │ │ └── conversations-list.page.ts │ │ ├── create-canned-response │ │ │ ├── create-canned-response-routing.module.ts │ │ │ ├── create-canned-response.module.ts │ │ │ ├── create-canned-response.page.html │ │ │ ├── create-canned-response.page.scss │ │ │ ├── create-canned-response.page.spec.ts │ │ │ └── create-canned-response.page.ts │ │ ├── create-requester │ │ │ ├── create-requester-routing.module.ts │ │ │ ├── create-requester.module.ts │ │ │ ├── create-requester.page.html │ │ │ ├── create-requester.page.scss │ │ │ ├── create-requester.page.spec.ts │ │ │ └── create-requester.page.ts │ │ ├── create-ticket │ │ │ ├── create-ticket-routing.module.ts │ │ │ ├── create-ticket.module.ts │ │ │ ├── create-ticket.page.html │ │ │ ├── create-ticket.page.scss │ │ │ ├── create-ticket.page.spec.ts │ │ │ └── create-ticket.page.ts │ │ ├── details │ │ │ ├── details-routing.module.ts │ │ │ ├── details.module.ts │ │ │ ├── details.page.html │ │ │ ├── details.page.scss │ │ │ ├── details.page.spec.ts │ │ │ └── details.page.ts │ │ ├── loader-preview │ │ │ ├── loader-preview-routing.module.ts │ │ │ ├── loader-preview.module.ts │ │ │ ├── loader-preview.page.html │ │ │ ├── loader-preview.page.scss │ │ │ ├── loader-preview.page.spec.ts │ │ │ └── loader-preview.page.ts │ │ ├── profile-info │ │ │ ├── profile-info-routing.module.ts │ │ │ ├── profile-info.module.ts │ │ │ ├── profile-info.page.html │ │ │ ├── profile-info.page.scss │ │ │ ├── profile-info.page.spec.ts │ │ │ └── profile-info.page.ts │ │ └── unassigned-conversations │ │ │ ├── unassigned-conversations-routing.module.ts │ │ │ ├── unassigned-conversations.module.ts │ │ │ ├── unassigned-conversations.page.html │ │ │ ├── unassigned-conversations.page.scss │ │ │ ├── unassigned-conversations.page.spec.ts │ │ │ └── unassigned-conversations.page.ts │ ├── services │ │ ├── app-config.ts │ │ ├── canned-responses │ │ │ ├── canned-responses.service.spec.ts │ │ │ └── canned-responses.service.ts │ │ ├── contacts │ │ │ ├── contacts.service.spec.ts │ │ │ └── contacts.service.ts │ │ ├── events-service.ts │ │ ├── nav-proxy.service.spec.ts │ │ ├── nav-proxy.service.ts │ │ ├── network-service │ │ │ ├── network.service.spec.ts │ │ │ └── network.service.ts │ │ ├── tiledesk │ │ │ ├── tiledesk.service.spec.ts │ │ │ └── tiledesk.service.ts │ │ └── websocket │ │ │ ├── websocket-js.ts │ │ │ ├── websocket.service.spec.ts │ │ │ └── websocket.service.ts │ ├── shared │ │ ├── shared-conversation-info.module.ts │ │ └── shared.module.ts │ └── utils │ │ ├── constants.ts-e │ │ └── scrollbar-theme.directive.ts ├── assets │ ├── chat21-logo.svg │ ├── i18n │ │ ├── de.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fr.json │ │ ├── it.json │ │ ├── pt.json │ │ ├── ru.json │ │ ├── sr.json │ │ └── tr.json │ ├── icon │ │ ├── favicon.ico │ │ └── ionic_favicon.png │ ├── images │ │ ├── default-avatar-x-select.png │ │ ├── f21ico-done.svg │ │ ├── f21ico-done_all.svg │ │ ├── f21ico-schedule.svg │ │ ├── file-alt-solid.png │ │ ├── language_flag │ │ │ ├── ar.png │ │ │ ├── bg.png │ │ │ ├── ca.png │ │ │ ├── cs.png │ │ │ ├── da.png │ │ │ ├── de.png │ │ │ ├── el.png │ │ │ ├── en.png │ │ │ ├── es.png │ │ │ ├── fa.png │ │ │ ├── fi.png │ │ │ ├── fr.png │ │ │ ├── he.png │ │ │ ├── hi.png │ │ │ ├── hr.png │ │ │ ├── hu.png │ │ │ ├── id.png │ │ │ ├── it.png │ │ │ ├── ja.png │ │ │ ├── ko.png │ │ │ ├── ml-IN.png │ │ │ ├── ne-NP.png │ │ │ ├── nl.png │ │ │ ├── no.png │ │ │ ├── pl.png │ │ │ ├── pt-BR.png │ │ │ ├── pt.png │ │ │ ├── ro.png │ │ │ ├── ru.png │ │ │ ├── sk.png │ │ │ ├── sl.png │ │ │ ├── sr.png │ │ │ ├── sv-SE.png │ │ │ ├── ta.png │ │ │ ├── th.png │ │ │ ├── tr.png │ │ │ ├── uk.png │ │ │ ├── vi.png │ │ │ ├── zh-CN.png │ │ │ └── zh-TW.png │ │ ├── no_conversation.jpg │ │ ├── no_image.png │ │ ├── no_image_user.png │ │ └── priority_icons │ │ │ ├── high.svg │ │ │ ├── high_v2.svg │ │ │ ├── low.svg │ │ │ ├── low_v2.svg │ │ │ ├── medium.svg │ │ │ ├── medium_v2.svg │ │ │ ├── urgent.svg │ │ │ └── urgent_v2.svg │ ├── js │ │ ├── chat21client.js │ │ └── mqtt │ │ │ ├── 4.1.0 │ │ │ └── mqtt.min.js │ │ │ ├── 4.2.6 │ │ │ └── mqtt.min.js │ │ │ └── 4.2.8 │ │ │ └── mqtt.min.js │ ├── logo.png │ ├── shapes.svg │ ├── sounds │ │ └── pling.mp3 │ ├── splash_white.jpg │ ├── tiledesk-solo-logo.png │ └── transparent.png ├── chat-config-template.json ├── chat-config.json ├── chat21-core │ ├── models │ │ ├── conversation.ts │ │ ├── group.ts │ │ ├── message.ts │ │ ├── upload.ts │ │ └── user.ts │ ├── providers │ │ ├── abstract │ │ │ ├── app-storage.service.spec.ts │ │ │ ├── app-storage.service.ts │ │ │ ├── archivedconversations-handler.service.spec.ts │ │ │ ├── archivedconversations-handler.service.ts │ │ │ ├── conversation-handler-builder.service.spec.ts │ │ │ ├── conversation-handler-builder.service.ts │ │ │ ├── conversation-handler.service.spec.ts │ │ │ ├── conversation-handler.service.ts │ │ │ ├── conversations-handler.service.spec.ts │ │ │ ├── conversations-handler.service.ts │ │ │ ├── groups-handler.service.spec.ts │ │ │ ├── groups-handler.service.ts │ │ │ ├── image-repo.service.spec.ts │ │ │ ├── image-repo.service.ts │ │ │ ├── logger.service.spec.ts │ │ │ ├── logger.service.ts │ │ │ ├── messagingAuth.service.spec.ts │ │ │ ├── messagingAuth.service.ts │ │ │ ├── notifications.service.spec.ts │ │ │ ├── notifications.service.ts │ │ │ ├── presence.service.spec.ts │ │ │ ├── presence.service.ts │ │ │ ├── typing.service.spec.ts │ │ │ ├── typing.service.ts │ │ │ ├── upload.service.spec.ts │ │ │ └── upload.service.ts │ │ ├── chat-manager.ts │ │ ├── custom-translate.service.spec.ts │ │ ├── custom-translate.service.ts │ │ ├── firebase │ │ │ ├── firebase-archivedconversations-handler.ts │ │ │ ├── firebase-auth-service.ts │ │ │ ├── firebase-conversation-handler-builder.service.ts │ │ │ ├── firebase-conversation-handler.ts │ │ │ ├── firebase-conversations-handler.ts │ │ │ ├── firebase-groups-handler.ts │ │ │ ├── firebase-image-repo.ts │ │ │ ├── firebase-init-service.ts │ │ │ ├── firebase-notifications.ts │ │ │ ├── firebase-presence.service.ts │ │ │ ├── firebase-typing.service.ts │ │ │ └── firebase-upload.service.ts │ │ ├── localSessionStorage.ts │ │ ├── logger │ │ │ ├── customLogger.ts │ │ │ └── loggerInstance.ts │ │ ├── mqtt │ │ │ ├── chat-service.ts │ │ │ ├── mqtt-archivedconversations-handler.ts │ │ │ ├── mqtt-auth-service.ts │ │ │ ├── mqtt-conversation-handler-builder.service.ts │ │ │ ├── mqtt-conversation-handler.ts │ │ │ ├── mqtt-conversations-handler.ts │ │ │ ├── mqtt-groups-handler.ts │ │ │ ├── mqtt-notifications.ts │ │ │ ├── mqtt-presence.service.ts │ │ │ └── mqtt-typing.service.ts │ │ ├── native │ │ │ ├── native-image-repo.ts │ │ │ └── native-upload-service.ts │ │ └── tiledesk │ │ │ ├── tiledesk-auth.service.spec.ts │ │ │ └── tiledesk-auth.service.ts │ └── utils │ │ ├── constants.ts │ │ ├── user-typing │ │ ├── user-typing.component.html │ │ ├── user-typing.component.scss │ │ ├── user-typing.component.spec.ts │ │ └── user-typing.component.ts │ │ ├── utils-message.ts │ │ ├── utils-user.ts │ │ └── utils.ts ├── environments │ ├── environment.pre.ts │ ├── environment.prod.ts │ └── environment.ts ├── firebase-messaging-sw-template.js ├── firebase-messaging-sw.js ├── global.scss ├── index.html ├── main.ts ├── manifest.json ├── models │ └── department.ts ├── polyfills.ts ├── test.ts ├── theme │ └── variables.scss ├── variables.scss └── zone-flags.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/workflows/docker-community-push-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/.github/workflows/docker-community-push-latest.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-tag-community-tag-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/.github/workflows/docker-image-tag-community-tag-push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/browserslist -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/config.xml -------------------------------------------------------------------------------- /deploy_pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/deploy_pre.sh -------------------------------------------------------------------------------- /deploy_prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/deploy_prod.sh -------------------------------------------------------------------------------- /env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/env.sample -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/ionic.config.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/karma.conf.js -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/nginx.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/package.json -------------------------------------------------------------------------------- /resources/android/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/icon/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/icon/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/icon/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/icon/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/icon/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/icon/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/splash.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/resources/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.html -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.scss -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.spec.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.html -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.scss -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/avatar/avatar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/avatar/avatar.component.html -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/avatar/avatar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/avatar/avatar.component.scss -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/avatar/avatar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/avatar/avatar.component.spec.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/avatar/avatar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/avatar/avatar.component.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.html -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.scss -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.spec.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.html -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.scss -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.spec.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.html -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.scss -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.spec.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.html -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.scss -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.spec.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/frame/frame.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/frame/frame.component.html -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/frame/frame.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/frame/frame.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/frame/frame.component.spec.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/frame/frame.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/frame/frame.component.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/image/image.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/image/image.component.html -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/image/image.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/image/image.component.scss -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/image/image.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/image/image.component.spec.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/image/image.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/image/image.component.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/info-message/info-message.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/info-message/info-message.component.html -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/info-message/info-message.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/info-message/info-message.component.scss -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/info-message/info-message.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/info-message/info-message.component.spec.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/info-message/info-message.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/info-message/info-message.component.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.html -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.scss -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.spec.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.html -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.scss -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.spec.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/text/text.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/text/text.component.html -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/text/text.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/text/text.component.scss -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/text/text.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/text/text.component.spec.ts -------------------------------------------------------------------------------- /src/app/chatlib/conversation-detail/message/text/text.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/conversation-detail/message/text/text.component.ts -------------------------------------------------------------------------------- /src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.html -------------------------------------------------------------------------------- /src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.scss -------------------------------------------------------------------------------- /src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.spec.ts -------------------------------------------------------------------------------- /src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts -------------------------------------------------------------------------------- /src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.html -------------------------------------------------------------------------------- /src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.scss -------------------------------------------------------------------------------- /src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.spec.ts -------------------------------------------------------------------------------- /src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.ts -------------------------------------------------------------------------------- /src/app/components/authentication/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/authentication/login/login.component.html -------------------------------------------------------------------------------- /src/app/components/authentication/login/login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/authentication/login/login.component.scss -------------------------------------------------------------------------------- /src/app/components/authentication/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/authentication/login/login.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/authentication/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/authentication/login/login.component.ts -------------------------------------------------------------------------------- /src/app/components/contacts-directory/contacts-directory.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/contacts-directory/contacts-directory.component.html -------------------------------------------------------------------------------- /src/app/components/contacts-directory/contacts-directory.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/contacts-directory/contacts-directory.component.scss -------------------------------------------------------------------------------- /src/app/components/contacts-directory/contacts-directory.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/contacts-directory/contacts-directory.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/contacts-directory/contacts-directory.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/contacts-directory/contacts-directory.component.ts -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.html -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.scss -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.ts -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.html -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.scss -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.ts -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.html -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.scss -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.ts -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.html -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.scss -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.ts -------------------------------------------------------------------------------- /src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html -------------------------------------------------------------------------------- /src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.scss -------------------------------------------------------------------------------- /src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.ts -------------------------------------------------------------------------------- /src/app/components/conversation-detail/message-text-area/message-text-area.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/message-text-area/message-text-area.component.html -------------------------------------------------------------------------------- /src/app/components/conversation-detail/message-text-area/message-text-area.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/message-text-area/message-text-area.component.scss -------------------------------------------------------------------------------- /src/app/components/conversation-detail/message-text-area/message-text-area.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/message-text-area/message-text-area.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/conversation-detail/message-text-area/message-text-area.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts -------------------------------------------------------------------------------- /src/app/components/conversation-detail/option-header/option-header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/option-header/option-header.component.html -------------------------------------------------------------------------------- /src/app/components/conversation-detail/option-header/option-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/conversation-detail/option-header/option-header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/option-header/option-header.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/conversation-detail/option-header/option-header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-detail/option-header/option-header.component.ts -------------------------------------------------------------------------------- /src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.html -------------------------------------------------------------------------------- /src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.scss -------------------------------------------------------------------------------- /src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.ts -------------------------------------------------------------------------------- /src/app/components/conversation-info/conversation-info.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/conversation-info.module.ts -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-content/info-content.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/info-content/info-content.component.html -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-content/info-content.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/info-content/info-content.component.scss -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-content/info-content.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/info-content/info-content.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-content/info-content.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/info-content/info-content.component.ts -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-direct/info-direct.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/info-direct/info-direct.component.html -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-direct/info-direct.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/info-direct/info-direct.component.scss -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-direct/info-direct.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/info-direct/info-direct.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-direct/info-direct.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/info-direct/info-direct.component.ts -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-group/info-group.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/info-group/info-group.component.html -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-group/info-group.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/info-group/info-group.component.scss -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-group/info-group.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/info-group/info-group.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-group/info-group.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/info-group/info-group.component.ts -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-support-group/info-support-group.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/info-support-group/info-support-group.component.html -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-support-group/info-support-group.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-support-group/info-support-group.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/info-support-group/info-support-group.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/conversation-info/info-support-group/info-support-group.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/conversation-info/info-support-group/info-support-group.component.ts -------------------------------------------------------------------------------- /src/app/components/ddp-header/ddp-header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/ddp-header/ddp-header.component.html -------------------------------------------------------------------------------- /src/app/components/ddp-header/ddp-header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/ddp-header/ddp-header.component.scss -------------------------------------------------------------------------------- /src/app/components/ddp-header/ddp-header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/ddp-header/ddp-header.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/ddp-header/ddp-header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/ddp-header/ddp-header.component.ts -------------------------------------------------------------------------------- /src/app/components/image-viewer/image-viewer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/image-viewer/image-viewer.component.html -------------------------------------------------------------------------------- /src/app/components/image-viewer/image-viewer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/image-viewer/image-viewer.component.scss -------------------------------------------------------------------------------- /src/app/components/image-viewer/image-viewer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/image-viewer/image-viewer.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/image-viewer/image-viewer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/image-viewer/image-viewer.component.ts -------------------------------------------------------------------------------- /src/app/components/project-item/project-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/project-item/project-item.component.html -------------------------------------------------------------------------------- /src/app/components/project-item/project-item.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/project-item/project-item.component.scss -------------------------------------------------------------------------------- /src/app/components/project-item/project-item.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/project-item/project-item.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/project-item/project-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/project-item/project-item.component.ts -------------------------------------------------------------------------------- /src/app/components/sidebar-user-details/sidebar-user-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/sidebar-user-details/sidebar-user-details.component.html -------------------------------------------------------------------------------- /src/app/components/sidebar-user-details/sidebar-user-details.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/sidebar-user-details/sidebar-user-details.component.scss -------------------------------------------------------------------------------- /src/app/components/sidebar-user-details/sidebar-user-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/sidebar-user-details/sidebar-user-details.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/sidebar-user-details/sidebar-user-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/sidebar-user-details/sidebar-user-details.component.ts -------------------------------------------------------------------------------- /src/app/components/sidebar/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/sidebar/sidebar.component.html -------------------------------------------------------------------------------- /src/app/components/sidebar/sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/sidebar/sidebar.component.scss -------------------------------------------------------------------------------- /src/app/components/sidebar/sidebar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/sidebar/sidebar.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/sidebar/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/sidebar/sidebar.component.ts -------------------------------------------------------------------------------- /src/app/components/utils/avatar-profile/avatar-profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/utils/avatar-profile/avatar-profile.component.html -------------------------------------------------------------------------------- /src/app/components/utils/avatar-profile/avatar-profile.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/utils/avatar-profile/avatar-profile.component.scss -------------------------------------------------------------------------------- /src/app/components/utils/avatar-profile/avatar-profile.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/utils/avatar-profile/avatar-profile.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/utils/avatar-profile/avatar-profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/utils/avatar-profile/avatar-profile.component.ts -------------------------------------------------------------------------------- /src/app/components/utils/user-presence/user-presence.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/utils/user-presence/user-presence.component.html -------------------------------------------------------------------------------- /src/app/components/utils/user-presence/user-presence.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/utils/user-presence/user-presence.component.scss -------------------------------------------------------------------------------- /src/app/components/utils/user-presence/user-presence.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/utils/user-presence/user-presence.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/utils/user-presence/user-presence.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/components/utils/user-presence/user-presence.component.ts -------------------------------------------------------------------------------- /src/app/directives/autofocus.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/directives/autofocus.directive.ts -------------------------------------------------------------------------------- /src/app/directives/html-entities-encode.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/directives/html-entities-encode.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/directives/html-entities-encode.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/directives/html-entities-encode.pipe.ts -------------------------------------------------------------------------------- /src/app/directives/marked.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/directives/marked.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/directives/marked.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/directives/marked.pipe.ts -------------------------------------------------------------------------------- /src/app/directives/safe-html.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/directives/safe-html.pipe.ts -------------------------------------------------------------------------------- /src/app/pages/authentication/login/login-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/authentication/login/login-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/authentication/login/login.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/authentication/login/login.module.ts -------------------------------------------------------------------------------- /src/app/pages/authentication/login/login.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/authentication/login/login.page.html -------------------------------------------------------------------------------- /src/app/pages/authentication/login/login.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/authentication/login/login.page.scss -------------------------------------------------------------------------------- /src/app/pages/authentication/login/login.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/authentication/login/login.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/authentication/login/login.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/authentication/login/login.page.ts -------------------------------------------------------------------------------- /src/app/pages/contacts-directory/contacts-directory-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/contacts-directory/contacts-directory-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/contacts-directory/contacts-directory.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/contacts-directory/contacts-directory.module.ts -------------------------------------------------------------------------------- /src/app/pages/contacts-directory/contacts-directory.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/contacts-directory/contacts-directory.page.html -------------------------------------------------------------------------------- /src/app/pages/contacts-directory/contacts-directory.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/contacts-directory/contacts-directory.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/contacts-directory/contacts-directory.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/contacts-directory/contacts-directory.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/contacts-directory/contacts-directory.page.ts -------------------------------------------------------------------------------- /src/app/pages/conversation-detail/conversation-detail-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/conversation-detail/conversation-detail-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/conversation-detail/conversation-detail.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/conversation-detail/conversation-detail.module.ts -------------------------------------------------------------------------------- /src/app/pages/conversation-detail/conversation-detail.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/conversation-detail/conversation-detail.page.html -------------------------------------------------------------------------------- /src/app/pages/conversation-detail/conversation-detail.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/conversation-detail/conversation-detail.page.scss -------------------------------------------------------------------------------- /src/app/pages/conversation-detail/conversation-detail.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/conversation-detail/conversation-detail.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/conversation-detail/conversation-detail.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/conversation-detail/conversation-detail.page.ts -------------------------------------------------------------------------------- /src/app/pages/conversations-list/conversations-list-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/conversations-list/conversations-list-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/conversations-list/conversations-list.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/conversations-list/conversations-list.module.ts -------------------------------------------------------------------------------- /src/app/pages/conversations-list/conversations-list.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/conversations-list/conversations-list.page.html -------------------------------------------------------------------------------- /src/app/pages/conversations-list/conversations-list.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/conversations-list/conversations-list.page.scss -------------------------------------------------------------------------------- /src/app/pages/conversations-list/conversations-list.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/conversations-list/conversations-list.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/conversations-list/conversations-list.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/conversations-list/conversations-list.page.ts -------------------------------------------------------------------------------- /src/app/pages/create-canned-response/create-canned-response-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-canned-response/create-canned-response-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/create-canned-response/create-canned-response.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-canned-response/create-canned-response.module.ts -------------------------------------------------------------------------------- /src/app/pages/create-canned-response/create-canned-response.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-canned-response/create-canned-response.page.html -------------------------------------------------------------------------------- /src/app/pages/create-canned-response/create-canned-response.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-canned-response/create-canned-response.page.scss -------------------------------------------------------------------------------- /src/app/pages/create-canned-response/create-canned-response.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-canned-response/create-canned-response.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/create-canned-response/create-canned-response.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-canned-response/create-canned-response.page.ts -------------------------------------------------------------------------------- /src/app/pages/create-requester/create-requester-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-requester/create-requester-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/create-requester/create-requester.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-requester/create-requester.module.ts -------------------------------------------------------------------------------- /src/app/pages/create-requester/create-requester.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-requester/create-requester.page.html -------------------------------------------------------------------------------- /src/app/pages/create-requester/create-requester.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-requester/create-requester.page.scss -------------------------------------------------------------------------------- /src/app/pages/create-requester/create-requester.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-requester/create-requester.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/create-requester/create-requester.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-requester/create-requester.page.ts -------------------------------------------------------------------------------- /src/app/pages/create-ticket/create-ticket-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-ticket/create-ticket-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/create-ticket/create-ticket.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-ticket/create-ticket.module.ts -------------------------------------------------------------------------------- /src/app/pages/create-ticket/create-ticket.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-ticket/create-ticket.page.html -------------------------------------------------------------------------------- /src/app/pages/create-ticket/create-ticket.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-ticket/create-ticket.page.scss -------------------------------------------------------------------------------- /src/app/pages/create-ticket/create-ticket.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-ticket/create-ticket.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/create-ticket/create-ticket.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/create-ticket/create-ticket.page.ts -------------------------------------------------------------------------------- /src/app/pages/details/details-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/details/details-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/details/details.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/details/details.module.ts -------------------------------------------------------------------------------- /src/app/pages/details/details.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/details/details.page.html -------------------------------------------------------------------------------- /src/app/pages/details/details.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/details/details.page.scss -------------------------------------------------------------------------------- /src/app/pages/details/details.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/details/details.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/details/details.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/details/details.page.ts -------------------------------------------------------------------------------- /src/app/pages/loader-preview/loader-preview-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/loader-preview/loader-preview-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/loader-preview/loader-preview.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/loader-preview/loader-preview.module.ts -------------------------------------------------------------------------------- /src/app/pages/loader-preview/loader-preview.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/loader-preview/loader-preview.page.html -------------------------------------------------------------------------------- /src/app/pages/loader-preview/loader-preview.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/loader-preview/loader-preview.page.scss -------------------------------------------------------------------------------- /src/app/pages/loader-preview/loader-preview.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/loader-preview/loader-preview.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/loader-preview/loader-preview.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/loader-preview/loader-preview.page.ts -------------------------------------------------------------------------------- /src/app/pages/profile-info/profile-info-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/profile-info/profile-info-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/profile-info/profile-info.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/profile-info/profile-info.module.ts -------------------------------------------------------------------------------- /src/app/pages/profile-info/profile-info.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/profile-info/profile-info.page.html -------------------------------------------------------------------------------- /src/app/pages/profile-info/profile-info.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/profile-info/profile-info.page.scss -------------------------------------------------------------------------------- /src/app/pages/profile-info/profile-info.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/profile-info/profile-info.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/profile-info/profile-info.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/profile-info/profile-info.page.ts -------------------------------------------------------------------------------- /src/app/pages/unassigned-conversations/unassigned-conversations-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/unassigned-conversations/unassigned-conversations-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/unassigned-conversations/unassigned-conversations.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/unassigned-conversations/unassigned-conversations.module.ts -------------------------------------------------------------------------------- /src/app/pages/unassigned-conversations/unassigned-conversations.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/unassigned-conversations/unassigned-conversations.page.html -------------------------------------------------------------------------------- /src/app/pages/unassigned-conversations/unassigned-conversations.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/unassigned-conversations/unassigned-conversations.page.scss -------------------------------------------------------------------------------- /src/app/pages/unassigned-conversations/unassigned-conversations.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/unassigned-conversations/unassigned-conversations.page.spec.ts -------------------------------------------------------------------------------- /src/app/pages/unassigned-conversations/unassigned-conversations.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/pages/unassigned-conversations/unassigned-conversations.page.ts -------------------------------------------------------------------------------- /src/app/services/app-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/services/app-config.ts -------------------------------------------------------------------------------- /src/app/services/canned-responses/canned-responses.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/services/canned-responses/canned-responses.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/canned-responses/canned-responses.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/services/canned-responses/canned-responses.service.ts -------------------------------------------------------------------------------- /src/app/services/contacts/contacts.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/services/contacts/contacts.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/contacts/contacts.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/services/contacts/contacts.service.ts -------------------------------------------------------------------------------- /src/app/services/events-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/services/events-service.ts -------------------------------------------------------------------------------- /src/app/services/nav-proxy.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/services/nav-proxy.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/nav-proxy.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/services/nav-proxy.service.ts -------------------------------------------------------------------------------- /src/app/services/network-service/network.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/services/network-service/network.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/network-service/network.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/services/network-service/network.service.ts -------------------------------------------------------------------------------- /src/app/services/tiledesk/tiledesk.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/services/tiledesk/tiledesk.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/tiledesk/tiledesk.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/services/tiledesk/tiledesk.service.ts -------------------------------------------------------------------------------- /src/app/services/websocket/websocket-js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/services/websocket/websocket-js.ts -------------------------------------------------------------------------------- /src/app/services/websocket/websocket.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/services/websocket/websocket.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/websocket/websocket.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/services/websocket/websocket.service.ts -------------------------------------------------------------------------------- /src/app/shared/shared-conversation-info.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/shared/shared-conversation-info.module.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/utils/constants.ts-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/utils/constants.ts-e -------------------------------------------------------------------------------- /src/app/utils/scrollbar-theme.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/app/utils/scrollbar-theme.directive.ts -------------------------------------------------------------------------------- /src/assets/chat21-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/chat21-logo.svg -------------------------------------------------------------------------------- /src/assets/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/i18n/de.json -------------------------------------------------------------------------------- /src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/i18n/en.json -------------------------------------------------------------------------------- /src/assets/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/i18n/es.json -------------------------------------------------------------------------------- /src/assets/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/i18n/fr.json -------------------------------------------------------------------------------- /src/assets/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/i18n/it.json -------------------------------------------------------------------------------- /src/assets/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/i18n/pt.json -------------------------------------------------------------------------------- /src/assets/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/i18n/ru.json -------------------------------------------------------------------------------- /src/assets/i18n/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/i18n/sr.json -------------------------------------------------------------------------------- /src/assets/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/i18n/tr.json -------------------------------------------------------------------------------- /src/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/icon/favicon.ico -------------------------------------------------------------------------------- /src/assets/icon/ionic_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/icon/ionic_favicon.png -------------------------------------------------------------------------------- /src/assets/images/default-avatar-x-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/default-avatar-x-select.png -------------------------------------------------------------------------------- /src/assets/images/f21ico-done.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/f21ico-done.svg -------------------------------------------------------------------------------- /src/assets/images/f21ico-done_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/f21ico-done_all.svg -------------------------------------------------------------------------------- /src/assets/images/f21ico-schedule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/f21ico-schedule.svg -------------------------------------------------------------------------------- /src/assets/images/file-alt-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/file-alt-solid.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/ar.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/bg.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/ca.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/cs.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/da.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/da.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/de.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/el.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/el.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/en.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/es.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/fa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/fa.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/fi.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/fr.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/he.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/he.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/hi.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/hr.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/hu.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/id.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/it.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/ja.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/ko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/ko.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/ml-IN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/ml-IN.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/ne-NP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/ne-NP.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/nl.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/no.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/pl.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/pt-BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/pt-BR.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/pt.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/ro.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/ru.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/sk.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/sl.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/sr.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/sv-SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/sv-SE.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/ta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/ta.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/th.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/tr.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/uk.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/vi.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/zh-CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/zh-CN.png -------------------------------------------------------------------------------- /src/assets/images/language_flag/zh-TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/language_flag/zh-TW.png -------------------------------------------------------------------------------- /src/assets/images/no_conversation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/no_conversation.jpg -------------------------------------------------------------------------------- /src/assets/images/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/no_image.png -------------------------------------------------------------------------------- /src/assets/images/no_image_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/no_image_user.png -------------------------------------------------------------------------------- /src/assets/images/priority_icons/high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/priority_icons/high.svg -------------------------------------------------------------------------------- /src/assets/images/priority_icons/high_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/priority_icons/high_v2.svg -------------------------------------------------------------------------------- /src/assets/images/priority_icons/low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/priority_icons/low.svg -------------------------------------------------------------------------------- /src/assets/images/priority_icons/low_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/priority_icons/low_v2.svg -------------------------------------------------------------------------------- /src/assets/images/priority_icons/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/priority_icons/medium.svg -------------------------------------------------------------------------------- /src/assets/images/priority_icons/medium_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/priority_icons/medium_v2.svg -------------------------------------------------------------------------------- /src/assets/images/priority_icons/urgent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/priority_icons/urgent.svg -------------------------------------------------------------------------------- /src/assets/images/priority_icons/urgent_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/images/priority_icons/urgent_v2.svg -------------------------------------------------------------------------------- /src/assets/js/chat21client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/js/chat21client.js -------------------------------------------------------------------------------- /src/assets/js/mqtt/4.1.0/mqtt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/js/mqtt/4.1.0/mqtt.min.js -------------------------------------------------------------------------------- /src/assets/js/mqtt/4.2.6/mqtt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/js/mqtt/4.2.6/mqtt.min.js -------------------------------------------------------------------------------- /src/assets/js/mqtt/4.2.8/mqtt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/js/mqtt/4.2.8/mqtt.min.js -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/shapes.svg -------------------------------------------------------------------------------- /src/assets/sounds/pling.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/sounds/pling.mp3 -------------------------------------------------------------------------------- /src/assets/splash_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/splash_white.jpg -------------------------------------------------------------------------------- /src/assets/tiledesk-solo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/tiledesk-solo-logo.png -------------------------------------------------------------------------------- /src/assets/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/assets/transparent.png -------------------------------------------------------------------------------- /src/chat-config-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat-config-template.json -------------------------------------------------------------------------------- /src/chat-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat-config.json -------------------------------------------------------------------------------- /src/chat21-core/models/conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/models/conversation.ts -------------------------------------------------------------------------------- /src/chat21-core/models/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/models/group.ts -------------------------------------------------------------------------------- /src/chat21-core/models/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/models/message.ts -------------------------------------------------------------------------------- /src/chat21-core/models/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/models/upload.ts -------------------------------------------------------------------------------- /src/chat21-core/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/models/user.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/app-storage.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/app-storage.service.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/app-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/app-storage.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/archivedconversations-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/archivedconversations-handler.service.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/archivedconversations-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/archivedconversations-handler.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/conversation-handler-builder.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/conversation-handler-builder.service.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/conversation-handler-builder.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/conversation-handler-builder.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/conversation-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/conversation-handler.service.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/conversation-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/conversation-handler.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/conversations-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/conversations-handler.service.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/conversations-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/conversations-handler.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/groups-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/groups-handler.service.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/groups-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/groups-handler.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/image-repo.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/image-repo.service.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/image-repo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/image-repo.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/logger.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/logger.service.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/logger.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/messagingAuth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/messagingAuth.service.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/messagingAuth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/messagingAuth.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/notifications.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/notifications.service.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/notifications.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/notifications.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/presence.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/presence.service.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/presence.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/presence.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/typing.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/typing.service.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/typing.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/typing.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/upload.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/upload.service.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/abstract/upload.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/abstract/upload.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/chat-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/chat-manager.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/custom-translate.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/custom-translate.service.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/custom-translate.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/custom-translate.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/firebase/firebase-archivedconversations-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/firebase/firebase-archivedconversations-handler.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/firebase/firebase-auth-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/firebase/firebase-auth-service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/firebase/firebase-conversation-handler-builder.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/firebase/firebase-conversation-handler-builder.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/firebase/firebase-conversation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/firebase/firebase-conversation-handler.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/firebase/firebase-conversations-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/firebase/firebase-conversations-handler.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/firebase/firebase-groups-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/firebase/firebase-groups-handler.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/firebase/firebase-image-repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/firebase/firebase-image-repo.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/firebase/firebase-init-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/firebase/firebase-init-service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/firebase/firebase-notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/firebase/firebase-notifications.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/firebase/firebase-presence.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/firebase/firebase-presence.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/firebase/firebase-typing.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/firebase/firebase-typing.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/firebase/firebase-upload.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/firebase/firebase-upload.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/localSessionStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/localSessionStorage.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/logger/customLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/logger/customLogger.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/logger/loggerInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/logger/loggerInstance.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/mqtt/chat-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/mqtt/chat-service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/mqtt/mqtt-archivedconversations-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/mqtt/mqtt-archivedconversations-handler.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/mqtt/mqtt-auth-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/mqtt/mqtt-auth-service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/mqtt/mqtt-conversation-handler-builder.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/mqtt/mqtt-conversation-handler-builder.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/mqtt/mqtt-conversation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/mqtt/mqtt-conversation-handler.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/mqtt/mqtt-conversations-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/mqtt/mqtt-conversations-handler.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/mqtt/mqtt-groups-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/mqtt/mqtt-groups-handler.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/mqtt/mqtt-notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/mqtt/mqtt-notifications.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/mqtt/mqtt-presence.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/mqtt/mqtt-presence.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/mqtt/mqtt-typing.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/mqtt/mqtt-typing.service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/native/native-image-repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/native/native-image-repo.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/native/native-upload-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/native/native-upload-service.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/tiledesk/tiledesk-auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/tiledesk/tiledesk-auth.service.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/providers/tiledesk/tiledesk-auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/providers/tiledesk/tiledesk-auth.service.ts -------------------------------------------------------------------------------- /src/chat21-core/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/utils/constants.ts -------------------------------------------------------------------------------- /src/chat21-core/utils/user-typing/user-typing.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/utils/user-typing/user-typing.component.html -------------------------------------------------------------------------------- /src/chat21-core/utils/user-typing/user-typing.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/utils/user-typing/user-typing.component.scss -------------------------------------------------------------------------------- /src/chat21-core/utils/user-typing/user-typing.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/utils/user-typing/user-typing.component.spec.ts -------------------------------------------------------------------------------- /src/chat21-core/utils/user-typing/user-typing.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/utils/user-typing/user-typing.component.ts -------------------------------------------------------------------------------- /src/chat21-core/utils/utils-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/utils/utils-message.ts -------------------------------------------------------------------------------- /src/chat21-core/utils/utils-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/utils/utils-user.ts -------------------------------------------------------------------------------- /src/chat21-core/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/chat21-core/utils/utils.ts -------------------------------------------------------------------------------- /src/environments/environment.pre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/environments/environment.pre.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/firebase-messaging-sw-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/firebase-messaging-sw-template.js -------------------------------------------------------------------------------- /src/firebase-messaging-sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/firebase-messaging-sw.js -------------------------------------------------------------------------------- /src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/global.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "gcm_sender_id": "103953800507" 3 | } -------------------------------------------------------------------------------- /src/models/department.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/models/department.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /src/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/variables.scss -------------------------------------------------------------------------------- /src/zone-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/src/zone-flags.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chat21/chat21-ionic/HEAD/tslint.json --------------------------------------------------------------------------------