From 38f319c276d928507b0e6ca4f07b3810a4ca7e85 Mon Sep 17 00:00:00 2001 From: Alireza Fatehi Date: Thu, 16 Nov 2023 10:20:50 +0100 Subject: [PATCH] add license header for all *.ts and *.vue files and add nwa config and text file --- nwa.txt | 8 ++++++ nwa_config.yml | 26 +++++++++++++++++++ src/App.vue | 5 ++++ src/components/IntegrationList.vue | 5 ++++ src/components/InterventionsList.vue | 5 ++++ src/components/ObservationList.vue | 5 ++++ src/components/ParticipantList.vue | 5 ++++ src/components/ParticipationDataList.vue | 5 ++++ src/components/StudyCollaboratorList.vue | 5 ++++ src/components/StudyGroupList.vue | 5 ++++ src/components/StudyList.vue | 5 ++++ src/components/User.vue | 5 ++++ .../dialog/ChangeStudyStatusDialog.vue | 5 ++++ src/components/dialog/CopyTokenDialog.vue | 5 ++++ .../dialog/DeleteMoreTableRowDialog.vue | 5 ++++ .../dialog/DeleteParticipantDialog.vue | 5 ++++ src/components/dialog/DeleteStudyDialog.vue | 5 ++++ .../dialog/DistributeParticipantsDialog.vue | 5 ++++ src/components/dialog/InfoDialog.vue | 5 ++++ src/components/dialog/IntegrationDialog.vue | 5 ++++ src/components/dialog/InterventionDialog.vue | 5 ++++ src/components/dialog/ObservationDialog.vue | 5 ++++ .../dialog/StudyCollaboratorDialog.vue | 5 ++++ src/components/dialog/StudyDialog.vue | 5 ++++ .../dialog/shared/ActionProperty.vue | 5 ++++ .../dialog/shared/BooleanPropertyInput.vue | 5 ++++ .../dialog/shared/IntegerPropertyInput.vue | 5 ++++ .../shared/ObservationPropertyInput.vue | 5 ++++ .../dialog/shared/ProprtyInputs.vue | 5 ++++ .../dialog/shared/PushNotificationInput.vue | 5 ++++ .../dialog/shared/StringListPropertyInput.vue | 20 ++++++++++---- .../dialog/shared/StringPropertyInput.vue | 5 ++++ .../dialog/shared/StringTextPropertyInput.vue | 5 ++++ .../dialog/shared/WarningSection.vue | 5 ++++ .../forms/CronSchedulerConfiguration.vue | 5 ++++ .../InterventionTriggerConditionTable.vue | 5 ++++ .../forms/InterventionTriggerConditions.vue | 5 ++++ src/components/forms/Overview-EditDetails.vue | 5 ++++ src/components/forms/StudyStatusChange.vue | 5 ++++ src/components/shared/AlertMsg.vue | 5 ++++ src/components/shared/Footer.vue | 5 ++++ src/components/shared/Header.vue | 5 ++++ src/components/shared/MoreTabNav.vue | 5 ++++ src/components/shared/MoreTable.vue | 7 ++++- src/components/shared/Scheduler.vue | 5 ++++ src/components/shared/StudyHeader.vue | 5 ++++ .../subComponents/CronScheduleExamples.vue | 5 ++++ .../subComponents/CronScheduleInfo.vue | 5 ++++ .../subComponents/DatapointList.vue | 5 ++++ .../subComponents/IntegrationExample.vue | 5 ++++ .../subComponents/SchedulerInfoBlock.vue | 5 ++++ src/composable/useApi.ts | 8 ++++++ src/composable/useErrorHandling.ts | 8 ++++++ src/composable/useLoader.ts | 8 ++++++ src/env.d.ts | 8 ++++++ src/i18n/i18n.ts | 8 ++++++ src/main.ts | 8 ++++++ src/models/ContextModel.ts | 8 ++++++ src/models/CronSchedulerModel.ts | 8 ++++++ src/models/InputModels.ts | 8 ++++++ src/models/InterventionTriggerModel.ts | 8 ++++++ src/models/MoreTableModel.ts | 8 ++++++ src/models/ParticipationData.ts | 8 ++++++ src/models/PropertyInputModels.ts | 8 ++++++ src/models/Scheduler.ts | 8 ++++++ src/router/index.ts | 8 ++++++ src/service/AuthService.ts | 8 ++++++ src/stores/studyGroupStore.ts | 8 ++++++ src/stores/studyStore.ts | 8 ++++++ src/stores/userStore.ts | 8 ++++++ src/utils/dateUtils.ts | 8 ++++++ src/views/Dashboard.vue | 5 ++++ src/views/Data.vue | 5 ++++ src/views/Integrations.vue | 5 ++++ src/views/Interventions.vue | 5 ++++ src/views/NotFound.vue | 5 ++++ src/views/Observations.vue | 5 ++++ src/views/Participants.vue | 5 ++++ src/views/StudyOverview.vue | 5 ++++ 79 files changed, 490 insertions(+), 6 deletions(-) create mode 100644 nwa.txt create mode 100644 nwa_config.yml diff --git a/nwa.txt b/nwa.txt new file mode 100644 index 00000000..39d62f2a --- /dev/null +++ b/nwa.txt @@ -0,0 +1,8 @@ +/* + Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + for Digital Health and Prevention -- A research institute of the + Ludwig Boltzmann Gesellschaft, Oesterreichische Vereinigung zur + Foerderung der wissenschaftlichen Forschung). + Licensed under the Elastic License 2.0. + */ \ No newline at end of file diff --git a/nwa_config.yml b/nwa_config.yml new file mode 100644 index 00000000..3bd03377 --- /dev/null +++ b/nwa_config.yml @@ -0,0 +1,26 @@ +nwa: + cmd: 'add' + year: '2023' + path: ['./src'] + skip: + [ + '**/*.xml', + '**/*.yaml', + '**/*.yml', + '**/*.sql', + '**/*.cmd', + '**/*.txt', + '**/*.md', + '**/*.json', + '**/*.properties', + '**/*.csv', + '**/*.png', + '**/*.svg', + '**/*.pcss', + '**/*.kts', + '**/*.plist', + '**/*.entitlements', + '**/*.storyboard', + '**/*.webp', + ] + tmpl: 'nwa.txt' diff --git a/src/App.vue b/src/App.vue index 2f718668..ed0b5e09 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,3 +1,8 @@ +/* Copyright LBI-DHP and/or licensed to LBI-DHP under one or more contributor +license agreements (LBI-DHP: Ludwig Boltzmann Institute for Digital Health and +Prevention -- A research institute of the Ludwig Boltzmann Gesellschaft, +Oesterreichische Vereinigung zur Foerderung der wissenschaftlichen Forschung). +Licensed under the Elastic License 2.0. */