├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── cla.yml ├── .gitignore ├── .npmrc ├── .postcssrc.js ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CoopCare.code-workspace ├── LICENSE.md ├── README.md ├── babel.config.js ├── bin └── packageAndroid.js ├── docs └── cordova.md ├── package.json ├── public ├── covid19_DE.json └── covid19_EN.json ├── quasar.config.js ├── quasar.extensions.json ├── scripts └── guideline.js ├── signatures └── version1 │ └── cla.json ├── src-cordova ├── .gitignore ├── config.xml ├── cordova-flag.d.ts ├── package-lock.json ├── package.json └── translations │ └── app │ ├── de.json │ └── en.json ├── src-electron ├── electron-env.d.ts ├── electron-flag.d.ts ├── electron-main.ts ├── electron-preload.ts └── icons │ ├── icon.icns │ ├── icon.ico │ ├── icon.png │ └── linux-512x512.png ├── src ├── App.vue ├── api │ ├── apiProvider.ts │ ├── coopCareApiInterface.ts │ ├── demo.ts │ ├── realm.ts │ └── stitch.ts ├── boot │ ├── .gitkeep │ ├── api.ts │ ├── eventBus.ts │ ├── fetchData.ts │ ├── i18n.ts │ └── quasar-lang-pack.ts ├── components │ ├── ActionMenu.vue │ ├── BackofficeCompensationAgreement │ │ ├── de.vue │ │ └── index.vue │ ├── BackofficeCompensationAgreementList │ │ ├── de.vue │ │ └── index.vue │ ├── BackofficeCostEstimate.vue │ ├── BackofficeGeneralSettings.vue │ ├── BackofficeGeneralSettings │ │ ├── de.vue │ │ └── index.vue │ ├── BackofficeInvoice.vue │ ├── BackofficeReferral │ │ ├── de.vue │ │ └── index.vue │ ├── BackofficeSettings.vue │ ├── Banner.vue │ ├── CentralMessage.vue │ ├── ChatMessage.vue │ ├── ClientAgreements.vue │ ├── ClientBillingSettings │ │ ├── de.vue │ │ └── index.vue │ ├── ClientContactData.vue │ ├── ClientConversation.vue │ ├── ClientDrawer.vue │ ├── ClientFormalContact.vue │ ├── ClientHealthInformation.vue │ ├── ClientHistory.vue │ ├── ClientHistoryEntry.vue │ ├── ClientInformalContact.vue │ ├── ClientInsights.vue │ ├── ClientMasterData.vue │ ├── ClientProblems.vue │ ├── ClientReminders.vue │ ├── ContactInterventionList.vue │ ├── ContactTaskView.vue │ ├── ContactView.vue │ ├── DateTimeInput.vue │ ├── DateTimePopup.vue │ ├── DemoOnboarding.vue │ ├── DevMenu.vue │ ├── DiagnosisSelection.vue │ ├── EditToggleButton.vue │ ├── EditableInterventionV2.vue │ ├── EditingSheet.vue │ ├── FilterableMenu.vue │ ├── InterventionCategorySelect.vue │ ├── InterventionEditorV2.vue │ ├── InterventionEditorV3.vue │ ├── InterventionTargetSelect.vue │ ├── InterventionV1.vue │ ├── InterventionV2.vue │ ├── InterventionV3.vue │ ├── KBSDoughnutChart.vue │ ├── KBSOverviewChart.vue │ ├── LabeledItem.vue │ ├── LabeledValueEditor.vue │ ├── LanguageMenu.vue │ ├── Loading.vue │ ├── MultipleSelectableInput.vue │ ├── MyAccountDrawer.vue │ ├── NavigationDrawer.vue │ ├── NavigationItems.vue │ ├── NavigationSection.vue │ ├── NewClient.vue │ ├── NewClientSheet.vue │ ├── NoDataItem.vue │ ├── ProblemClassification.vue │ ├── ProblemRating.vue │ ├── ProblemSelection.vue │ ├── ProblemSummary.vue │ ├── ProblemSummaryContainer.vue │ ├── ProofOfPerformance.vue │ ├── PullToRefresh.vue │ ├── Rating.vue │ ├── RatingChart.vue │ ├── RatingChartGroup.vue │ ├── RecurrenceRuleEditor.vue │ ├── ReminderEditor.vue │ ├── RevealButton.vue │ ├── SearchableOptionList.vue │ ├── SelectDialog.vue │ ├── SelectableInput.vue │ ├── ShiftNoteInput.vue │ ├── ShiftNotesDayView.vue │ ├── Signature.vue │ ├── SimplifiedMarkdown.vue │ ├── SplitView.vue │ ├── TabView.vue │ ├── TaskView.vue │ ├── TeamDrawer.vue │ ├── TeamInvitationDialog.vue │ ├── TextWithHighlights.vue │ ├── TextWithTooltip.vue │ ├── TimeRecording.vue │ ├── ToggleButtonGroup.vue │ ├── UserMenu.vue │ ├── UserSettingsSheet.vue │ ├── UserSettingsView.vue │ └── Warning.vue ├── css │ ├── app.sass │ ├── print.sass │ └── quasar.variables.sass ├── data │ ├── sample-empty.json │ ├── sample1.json │ └── sampleImporter.ts ├── env.d.ts ├── helper │ ├── billing │ │ └── de.ts │ ├── color.ts │ ├── download.ts │ ├── terminology.ts │ ├── terminologyOrder.json │ ├── timeago.ts │ └── utils.ts ├── i18n │ ├── de-de │ │ ├── index.json │ │ └── terminology.json │ ├── en-us │ │ ├── index.json │ │ └── terminology.json │ └── index.ts ├── icons │ ├── app-icon-cordova.png │ ├── app-icon.png │ └── app-splashscreen.png ├── index.template.html ├── layouts │ └── MainLayout.vue ├── markdown │ ├── de │ │ ├── agpl-summary.md │ │ ├── datenschutz.md │ │ └── impressum.md │ └── en │ │ ├── agpl-summary.md │ │ ├── legal-notice.md │ │ └── privacy-policy.md ├── mixins │ ├── BackofficeMixin.ts │ ├── ClientActionMixin.ts │ ├── InterventionMixin.ts │ ├── RecordMixin.ts │ ├── RecordValidator.ts │ ├── TeamMixin.ts │ └── WarningMixin.ts ├── models │ ├── backoffice.ts │ ├── base.ts │ ├── changeRecord.ts │ ├── client.ts │ ├── contact.ts │ ├── identifiableObject.ts │ ├── index.ts │ ├── intervention.ts │ ├── localized │ │ └── de.ts │ ├── outcome.ts │ ├── problem.ts │ ├── problemRecord.ts │ ├── rating.ts │ ├── ratingReminder.ts │ ├── reminder.ts │ ├── rrule.ts │ ├── setting.ts │ ├── task.ts │ ├── team.ts │ ├── term.ts │ ├── types.ts │ └── user.ts ├── pages │ ├── Acknowledgements.vue │ ├── Backoffice.vue │ ├── Classification.vue │ ├── Client.vue │ ├── Confirm.vue │ ├── ErrorNotFound.vue │ ├── Insights.vue │ ├── Intervention.vue │ ├── License.vue │ ├── Login.vue │ ├── Markdown.vue │ ├── NewIntervention.vue │ ├── PasswordReset.vue │ ├── ProblemRecording.vue │ ├── ProblemsByDiagnosis.vue │ ├── Rating.vue │ ├── Register.vue │ ├── RequestPasswordReset.vue │ ├── TeamSettings.vue │ └── UserSettings.vue ├── quasar.d.ts ├── router │ ├── index.ts │ └── routes.ts ├── shims-vue.d.ts └── store │ ├── actions.ts │ ├── getters.ts │ ├── index.ts │ ├── mutations.ts │ └── store-flag.d.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/.npmrc -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CoopCare.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/CoopCare.code-workspace -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/packageAndroid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/bin/packageAndroid.js -------------------------------------------------------------------------------- /docs/cordova.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/docs/cordova.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/package.json -------------------------------------------------------------------------------- /public/covid19_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/public/covid19_DE.json -------------------------------------------------------------------------------- /public/covid19_EN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/public/covid19_EN.json -------------------------------------------------------------------------------- /quasar.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/quasar.config.js -------------------------------------------------------------------------------- /quasar.extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/quasar.extensions.json -------------------------------------------------------------------------------- /scripts/guideline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/scripts/guideline.js -------------------------------------------------------------------------------- /signatures/version1/cla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/signatures/version1/cla.json -------------------------------------------------------------------------------- /src-cordova/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src-cordova/.gitignore -------------------------------------------------------------------------------- /src-cordova/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src-cordova/config.xml -------------------------------------------------------------------------------- /src-cordova/cordova-flag.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src-cordova/cordova-flag.d.ts -------------------------------------------------------------------------------- /src-cordova/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src-cordova/package-lock.json -------------------------------------------------------------------------------- /src-cordova/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src-cordova/package.json -------------------------------------------------------------------------------- /src-cordova/translations/app/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src-cordova/translations/app/de.json -------------------------------------------------------------------------------- /src-cordova/translations/app/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src-cordova/translations/app/en.json -------------------------------------------------------------------------------- /src-electron/electron-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src-electron/electron-env.d.ts -------------------------------------------------------------------------------- /src-electron/electron-flag.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src-electron/electron-flag.d.ts -------------------------------------------------------------------------------- /src-electron/electron-main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src-electron/electron-main.ts -------------------------------------------------------------------------------- /src-electron/electron-preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src-electron/electron-preload.ts -------------------------------------------------------------------------------- /src-electron/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src-electron/icons/icon.icns -------------------------------------------------------------------------------- /src-electron/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src-electron/icons/icon.ico -------------------------------------------------------------------------------- /src-electron/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src-electron/icons/icon.png -------------------------------------------------------------------------------- /src-electron/icons/linux-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src-electron/icons/linux-512x512.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/apiProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/api/apiProvider.ts -------------------------------------------------------------------------------- /src/api/coopCareApiInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/api/coopCareApiInterface.ts -------------------------------------------------------------------------------- /src/api/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/api/demo.ts -------------------------------------------------------------------------------- /src/api/realm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/api/realm.ts -------------------------------------------------------------------------------- /src/api/stitch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/api/stitch.ts -------------------------------------------------------------------------------- /src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/boot/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/boot/api.ts -------------------------------------------------------------------------------- /src/boot/eventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/boot/eventBus.ts -------------------------------------------------------------------------------- /src/boot/fetchData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/boot/fetchData.ts -------------------------------------------------------------------------------- /src/boot/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/boot/i18n.ts -------------------------------------------------------------------------------- /src/boot/quasar-lang-pack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/boot/quasar-lang-pack.ts -------------------------------------------------------------------------------- /src/components/ActionMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ActionMenu.vue -------------------------------------------------------------------------------- /src/components/BackofficeCompensationAgreement/de.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/BackofficeCompensationAgreement/de.vue -------------------------------------------------------------------------------- /src/components/BackofficeCompensationAgreement/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/BackofficeCompensationAgreement/index.vue -------------------------------------------------------------------------------- /src/components/BackofficeCompensationAgreementList/de.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/BackofficeCompensationAgreementList/de.vue -------------------------------------------------------------------------------- /src/components/BackofficeCompensationAgreementList/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/BackofficeCompensationAgreementList/index.vue -------------------------------------------------------------------------------- /src/components/BackofficeCostEstimate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/BackofficeCostEstimate.vue -------------------------------------------------------------------------------- /src/components/BackofficeGeneralSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/BackofficeGeneralSettings.vue -------------------------------------------------------------------------------- /src/components/BackofficeGeneralSettings/de.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/BackofficeGeneralSettings/de.vue -------------------------------------------------------------------------------- /src/components/BackofficeGeneralSettings/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/BackofficeGeneralSettings/index.vue -------------------------------------------------------------------------------- /src/components/BackofficeInvoice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/BackofficeInvoice.vue -------------------------------------------------------------------------------- /src/components/BackofficeReferral/de.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/BackofficeReferral/de.vue -------------------------------------------------------------------------------- /src/components/BackofficeReferral/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/BackofficeReferral/index.vue -------------------------------------------------------------------------------- /src/components/BackofficeSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/BackofficeSettings.vue -------------------------------------------------------------------------------- /src/components/Banner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/Banner.vue -------------------------------------------------------------------------------- /src/components/CentralMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/CentralMessage.vue -------------------------------------------------------------------------------- /src/components/ChatMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ChatMessage.vue -------------------------------------------------------------------------------- /src/components/ClientAgreements.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ClientAgreements.vue -------------------------------------------------------------------------------- /src/components/ClientBillingSettings/de.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ClientBillingSettings/de.vue -------------------------------------------------------------------------------- /src/components/ClientBillingSettings/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ClientBillingSettings/index.vue -------------------------------------------------------------------------------- /src/components/ClientContactData.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ClientContactData.vue -------------------------------------------------------------------------------- /src/components/ClientConversation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ClientConversation.vue -------------------------------------------------------------------------------- /src/components/ClientDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ClientDrawer.vue -------------------------------------------------------------------------------- /src/components/ClientFormalContact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ClientFormalContact.vue -------------------------------------------------------------------------------- /src/components/ClientHealthInformation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ClientHealthInformation.vue -------------------------------------------------------------------------------- /src/components/ClientHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ClientHistory.vue -------------------------------------------------------------------------------- /src/components/ClientHistoryEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ClientHistoryEntry.vue -------------------------------------------------------------------------------- /src/components/ClientInformalContact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ClientInformalContact.vue -------------------------------------------------------------------------------- /src/components/ClientInsights.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ClientInsights.vue -------------------------------------------------------------------------------- /src/components/ClientMasterData.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ClientMasterData.vue -------------------------------------------------------------------------------- /src/components/ClientProblems.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ClientProblems.vue -------------------------------------------------------------------------------- /src/components/ClientReminders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ClientReminders.vue -------------------------------------------------------------------------------- /src/components/ContactInterventionList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ContactInterventionList.vue -------------------------------------------------------------------------------- /src/components/ContactTaskView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ContactTaskView.vue -------------------------------------------------------------------------------- /src/components/ContactView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ContactView.vue -------------------------------------------------------------------------------- /src/components/DateTimeInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/DateTimeInput.vue -------------------------------------------------------------------------------- /src/components/DateTimePopup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/DateTimePopup.vue -------------------------------------------------------------------------------- /src/components/DemoOnboarding.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/DemoOnboarding.vue -------------------------------------------------------------------------------- /src/components/DevMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/DevMenu.vue -------------------------------------------------------------------------------- /src/components/DiagnosisSelection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/DiagnosisSelection.vue -------------------------------------------------------------------------------- /src/components/EditToggleButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/EditToggleButton.vue -------------------------------------------------------------------------------- /src/components/EditableInterventionV2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/EditableInterventionV2.vue -------------------------------------------------------------------------------- /src/components/EditingSheet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/EditingSheet.vue -------------------------------------------------------------------------------- /src/components/FilterableMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/FilterableMenu.vue -------------------------------------------------------------------------------- /src/components/InterventionCategorySelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/InterventionCategorySelect.vue -------------------------------------------------------------------------------- /src/components/InterventionEditorV2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/InterventionEditorV2.vue -------------------------------------------------------------------------------- /src/components/InterventionEditorV3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/InterventionEditorV3.vue -------------------------------------------------------------------------------- /src/components/InterventionTargetSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/InterventionTargetSelect.vue -------------------------------------------------------------------------------- /src/components/InterventionV1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/InterventionV1.vue -------------------------------------------------------------------------------- /src/components/InterventionV2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/InterventionV2.vue -------------------------------------------------------------------------------- /src/components/InterventionV3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/InterventionV3.vue -------------------------------------------------------------------------------- /src/components/KBSDoughnutChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/KBSDoughnutChart.vue -------------------------------------------------------------------------------- /src/components/KBSOverviewChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/KBSOverviewChart.vue -------------------------------------------------------------------------------- /src/components/LabeledItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/LabeledItem.vue -------------------------------------------------------------------------------- /src/components/LabeledValueEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/LabeledValueEditor.vue -------------------------------------------------------------------------------- /src/components/LanguageMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/LanguageMenu.vue -------------------------------------------------------------------------------- /src/components/Loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/Loading.vue -------------------------------------------------------------------------------- /src/components/MultipleSelectableInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/MultipleSelectableInput.vue -------------------------------------------------------------------------------- /src/components/MyAccountDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/MyAccountDrawer.vue -------------------------------------------------------------------------------- /src/components/NavigationDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/NavigationDrawer.vue -------------------------------------------------------------------------------- /src/components/NavigationItems.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/NavigationItems.vue -------------------------------------------------------------------------------- /src/components/NavigationSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/NavigationSection.vue -------------------------------------------------------------------------------- /src/components/NewClient.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/NewClient.vue -------------------------------------------------------------------------------- /src/components/NewClientSheet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/NewClientSheet.vue -------------------------------------------------------------------------------- /src/components/NoDataItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/NoDataItem.vue -------------------------------------------------------------------------------- /src/components/ProblemClassification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ProblemClassification.vue -------------------------------------------------------------------------------- /src/components/ProblemRating.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ProblemRating.vue -------------------------------------------------------------------------------- /src/components/ProblemSelection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ProblemSelection.vue -------------------------------------------------------------------------------- /src/components/ProblemSummary.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ProblemSummary.vue -------------------------------------------------------------------------------- /src/components/ProblemSummaryContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ProblemSummaryContainer.vue -------------------------------------------------------------------------------- /src/components/ProofOfPerformance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ProofOfPerformance.vue -------------------------------------------------------------------------------- /src/components/PullToRefresh.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/PullToRefresh.vue -------------------------------------------------------------------------------- /src/components/Rating.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/Rating.vue -------------------------------------------------------------------------------- /src/components/RatingChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/RatingChart.vue -------------------------------------------------------------------------------- /src/components/RatingChartGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/RatingChartGroup.vue -------------------------------------------------------------------------------- /src/components/RecurrenceRuleEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/RecurrenceRuleEditor.vue -------------------------------------------------------------------------------- /src/components/ReminderEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ReminderEditor.vue -------------------------------------------------------------------------------- /src/components/RevealButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/RevealButton.vue -------------------------------------------------------------------------------- /src/components/SearchableOptionList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/SearchableOptionList.vue -------------------------------------------------------------------------------- /src/components/SelectDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/SelectDialog.vue -------------------------------------------------------------------------------- /src/components/SelectableInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/SelectableInput.vue -------------------------------------------------------------------------------- /src/components/ShiftNoteInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ShiftNoteInput.vue -------------------------------------------------------------------------------- /src/components/ShiftNotesDayView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ShiftNotesDayView.vue -------------------------------------------------------------------------------- /src/components/Signature.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/Signature.vue -------------------------------------------------------------------------------- /src/components/SimplifiedMarkdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/SimplifiedMarkdown.vue -------------------------------------------------------------------------------- /src/components/SplitView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/SplitView.vue -------------------------------------------------------------------------------- /src/components/TabView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/TabView.vue -------------------------------------------------------------------------------- /src/components/TaskView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/TaskView.vue -------------------------------------------------------------------------------- /src/components/TeamDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/TeamDrawer.vue -------------------------------------------------------------------------------- /src/components/TeamInvitationDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/TeamInvitationDialog.vue -------------------------------------------------------------------------------- /src/components/TextWithHighlights.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/TextWithHighlights.vue -------------------------------------------------------------------------------- /src/components/TextWithTooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/TextWithTooltip.vue -------------------------------------------------------------------------------- /src/components/TimeRecording.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/TimeRecording.vue -------------------------------------------------------------------------------- /src/components/ToggleButtonGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/ToggleButtonGroup.vue -------------------------------------------------------------------------------- /src/components/UserMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/UserMenu.vue -------------------------------------------------------------------------------- /src/components/UserSettingsSheet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/UserSettingsSheet.vue -------------------------------------------------------------------------------- /src/components/UserSettingsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/UserSettingsView.vue -------------------------------------------------------------------------------- /src/components/Warning.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/components/Warning.vue -------------------------------------------------------------------------------- /src/css/app.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/css/app.sass -------------------------------------------------------------------------------- /src/css/print.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/css/print.sass -------------------------------------------------------------------------------- /src/css/quasar.variables.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/css/quasar.variables.sass -------------------------------------------------------------------------------- /src/data/sample-empty.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /src/data/sample1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/data/sample1.json -------------------------------------------------------------------------------- /src/data/sampleImporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/data/sampleImporter.ts -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/helper/billing/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/helper/billing/de.ts -------------------------------------------------------------------------------- /src/helper/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/helper/color.ts -------------------------------------------------------------------------------- /src/helper/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/helper/download.ts -------------------------------------------------------------------------------- /src/helper/terminology.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/helper/terminology.ts -------------------------------------------------------------------------------- /src/helper/terminologyOrder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/helper/terminologyOrder.json -------------------------------------------------------------------------------- /src/helper/timeago.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/helper/timeago.ts -------------------------------------------------------------------------------- /src/helper/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/helper/utils.ts -------------------------------------------------------------------------------- /src/i18n/de-de/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/i18n/de-de/index.json -------------------------------------------------------------------------------- /src/i18n/de-de/terminology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/i18n/de-de/terminology.json -------------------------------------------------------------------------------- /src/i18n/en-us/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/i18n/en-us/index.json -------------------------------------------------------------------------------- /src/i18n/en-us/terminology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/i18n/en-us/terminology.json -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/icons/app-icon-cordova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/icons/app-icon-cordova.png -------------------------------------------------------------------------------- /src/icons/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/icons/app-icon.png -------------------------------------------------------------------------------- /src/icons/app-splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/icons/app-splashscreen.png -------------------------------------------------------------------------------- /src/index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/index.template.html -------------------------------------------------------------------------------- /src/layouts/MainLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/layouts/MainLayout.vue -------------------------------------------------------------------------------- /src/markdown/de/agpl-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/markdown/de/agpl-summary.md -------------------------------------------------------------------------------- /src/markdown/de/datenschutz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/markdown/de/datenschutz.md -------------------------------------------------------------------------------- /src/markdown/de/impressum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/markdown/de/impressum.md -------------------------------------------------------------------------------- /src/markdown/en/agpl-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/markdown/en/agpl-summary.md -------------------------------------------------------------------------------- /src/markdown/en/legal-notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/markdown/en/legal-notice.md -------------------------------------------------------------------------------- /src/markdown/en/privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/markdown/en/privacy-policy.md -------------------------------------------------------------------------------- /src/mixins/BackofficeMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/mixins/BackofficeMixin.ts -------------------------------------------------------------------------------- /src/mixins/ClientActionMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/mixins/ClientActionMixin.ts -------------------------------------------------------------------------------- /src/mixins/InterventionMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/mixins/InterventionMixin.ts -------------------------------------------------------------------------------- /src/mixins/RecordMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/mixins/RecordMixin.ts -------------------------------------------------------------------------------- /src/mixins/RecordValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/mixins/RecordValidator.ts -------------------------------------------------------------------------------- /src/mixins/TeamMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/mixins/TeamMixin.ts -------------------------------------------------------------------------------- /src/mixins/WarningMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/mixins/WarningMixin.ts -------------------------------------------------------------------------------- /src/models/backoffice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/backoffice.ts -------------------------------------------------------------------------------- /src/models/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/base.ts -------------------------------------------------------------------------------- /src/models/changeRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/changeRecord.ts -------------------------------------------------------------------------------- /src/models/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/client.ts -------------------------------------------------------------------------------- /src/models/contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/contact.ts -------------------------------------------------------------------------------- /src/models/identifiableObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/identifiableObject.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/models/intervention.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/intervention.ts -------------------------------------------------------------------------------- /src/models/localized/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/localized/de.ts -------------------------------------------------------------------------------- /src/models/outcome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/outcome.ts -------------------------------------------------------------------------------- /src/models/problem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/problem.ts -------------------------------------------------------------------------------- /src/models/problemRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/problemRecord.ts -------------------------------------------------------------------------------- /src/models/rating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/rating.ts -------------------------------------------------------------------------------- /src/models/ratingReminder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/ratingReminder.ts -------------------------------------------------------------------------------- /src/models/reminder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/reminder.ts -------------------------------------------------------------------------------- /src/models/rrule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/rrule.ts -------------------------------------------------------------------------------- /src/models/setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/setting.ts -------------------------------------------------------------------------------- /src/models/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/task.ts -------------------------------------------------------------------------------- /src/models/team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/team.ts -------------------------------------------------------------------------------- /src/models/term.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/term.ts -------------------------------------------------------------------------------- /src/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/types.ts -------------------------------------------------------------------------------- /src/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/models/user.ts -------------------------------------------------------------------------------- /src/pages/Acknowledgements.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/Acknowledgements.vue -------------------------------------------------------------------------------- /src/pages/Backoffice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/Backoffice.vue -------------------------------------------------------------------------------- /src/pages/Classification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/Classification.vue -------------------------------------------------------------------------------- /src/pages/Client.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/Client.vue -------------------------------------------------------------------------------- /src/pages/Confirm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/Confirm.vue -------------------------------------------------------------------------------- /src/pages/ErrorNotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/ErrorNotFound.vue -------------------------------------------------------------------------------- /src/pages/Insights.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/Insights.vue -------------------------------------------------------------------------------- /src/pages/Intervention.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/Intervention.vue -------------------------------------------------------------------------------- /src/pages/License.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/License.vue -------------------------------------------------------------------------------- /src/pages/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/Login.vue -------------------------------------------------------------------------------- /src/pages/Markdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/Markdown.vue -------------------------------------------------------------------------------- /src/pages/NewIntervention.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/NewIntervention.vue -------------------------------------------------------------------------------- /src/pages/PasswordReset.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/PasswordReset.vue -------------------------------------------------------------------------------- /src/pages/ProblemRecording.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/ProblemRecording.vue -------------------------------------------------------------------------------- /src/pages/ProblemsByDiagnosis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/ProblemsByDiagnosis.vue -------------------------------------------------------------------------------- /src/pages/Rating.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/Rating.vue -------------------------------------------------------------------------------- /src/pages/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/Register.vue -------------------------------------------------------------------------------- /src/pages/RequestPasswordReset.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/RequestPasswordReset.vue -------------------------------------------------------------------------------- /src/pages/TeamSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/TeamSettings.vue -------------------------------------------------------------------------------- /src/pages/UserSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/pages/UserSettings.vue -------------------------------------------------------------------------------- /src/quasar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/quasar.d.ts -------------------------------------------------------------------------------- /src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/router/index.ts -------------------------------------------------------------------------------- /src/router/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/router/routes.ts -------------------------------------------------------------------------------- /src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/shims-vue.d.ts -------------------------------------------------------------------------------- /src/store/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/store/actions.ts -------------------------------------------------------------------------------- /src/store/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/store/getters.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/store/mutations.ts -------------------------------------------------------------------------------- /src/store/store-flag.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/src/store/store-flag.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coop-care/web-app/HEAD/tsconfig.json --------------------------------------------------------------------------------