Skip to content

Commit 5f19687

Browse files
committed
Merge remote-tracking branch 'aces/main' into HEAD
2 parents 93865ae + 9a7f31c commit 5f19687

201 files changed

Lines changed: 1103 additions & 1486 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ POFILES=locale/fr/LC_MESSAGES/loris.po \
108108
modules/electrophysiology_uploader/locale/ja/LC_MESSAGES/electrophysiology_uploader.po \
109109
modules/electrophysiology_uploader/locale/hi/LC_MESSAGES/electrophysiology_uploader.po \
110110
modules/acknowledgements/locale/ja/LC_MESSAGES/acknowledgements.po \
111+
modules/survey_accounts/locale/hi/LC_MESSAGES/survey_accounts.po \
111112
modules/survey_accounts/locale/ja/LC_MESSAGES/survey_accounts.po \
112113
modules/battery_manager/locale/fr/LC_MESSAGES/battery_manager.po \
113114
modules/battery_manager/locale/ja/LC_MESSAGES/battery_manager.po \
@@ -311,7 +312,10 @@ my_preferences: $(filter modules/my_preferences/%,$(MOFILES)) $(filter modules/m
311312
target=my_preferences npm run compile
312313

313314
electrophysiology_browser: $(filter modules/electrophysiology_browser/%,$(MOFILES)) $(filter modules/electrophysiology_browser/%,$(I18NJSONFILES))
314-
target=electrophysiology_browser npm run compile
315+
target=electrophysiology_browser npm run compile
316+
317+
survey_accounts: $(filter modules/survey_accounts/%,$(MOFILES)) $(filter modules/survey_accounts/%,$(I18NJSONFILES))
318+
target=survey_accounts npm run compile
315319

316320
dicom_archive: $(filter modules/dicom_archive/%,$(MOFILES)) $(filter modules/dicom_archive/%,$(I18NJSONFILES))
317-
target=dicom_archive npm run compile
321+
target=dicom_archive npm run compile

SQL/0000-00-03-ConfigTables.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ INSERT INTO ConfigSettings (Name, Description, Visible, AllowMultiple, DataType,
196196
INSERT INTO ConfigSettings (Name, Description, Visible, AllowMultiple, Label, OrderNumber) VALUES ('eeg_pipeline', 'EEG Pipeline settings', 1, 0, 'EEG Pipeline', 15);
197197
INSERT INTO ConfigSettings (Name, Description, Visible, AllowMultiple, DataType, Parent, Label, OrderNumber) SELECT 'EEGS3DataPath', 'EEG S3 data path for assembly data', 1, 0, 'text', ID, 'EEG S3 data path', 15 FROM ConfigSettings WHERE Name = 'eeg_pipeline';
198198
INSERT INTO ConfigSettings (Name, Description, Visible, AllowMultiple, DataType, Parent, Label, OrderNumber) SELECT 'EEGUploadIncomingPath', 'Path to the upload directory for incoming EEG studies', 1, 0, 'text', ID, 'EEG Incoming Directory', 7 FROM ConfigSettings WHERE Name="eeg_pipeline";
199+
INSERT INTO ConfigSettings (Name, Description, Visible, AllowMultiple, DataType, Parent, Label, OrderNumber) SELECT 'EEGChunksPath', 'Path to store the EEG chunks for Visualization', 1, 0, 'text', ID, 'EEG chunks path', 16 FROM ConfigSettings WHERE Name="eeg_pipeline";
199200

200201
-- REDCap settings
201202
INSERT INTO ConfigSettings (Name, Description, Visible, AllowMultiple, Label, OrderNumber) VALUES ('redcap', 'Settings related to REDCap interoperability', 1, 0, 'REDCap', 16);
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
INSERT INTO ConfigSettings (Name, Description, Visible, AllowMultiple, DataType, Parent, Label, OrderNumber)
2+
SELECT 'EEGChunksPath', 'Path to store the EEG chunks for Visualization', 1, 0, 'text', ID, 'EEG chunks path', 16
3+
FROM ConfigSettings WHERE Name="eeg_pipeline";
4+
5+
INSERT INTO `Config` (`ConfigID`, `Value`)
6+
SELECT cPath.ID, dPathConfig.Value
7+
FROM ConfigSettings cPath
8+
JOIN ConfigSettings dPath ON dPath.Name = 'dataDirBasepath'
9+
JOIN Config dPathConfig ON dPathConfig.ConfigID = dPath.ID
10+
WHERE cPath.`Name` = 'EEGChunksPath' LIMIT 1;

0 commit comments

Comments
 (0)