Skip to content
Snippets Groups Projects

feat(ORCID): [AOU-1852] Complete ORCID settings in system properties to allow the portal to use it

Merged Nicolas.Rod requested to merge rodn-1852-orcid-config-in-system-properties into master
Files
3
@@ -61,7 +61,7 @@ import ch.unige.aou.task.NotifyResearchGroupsToValidateTask;
import ch.unige.aou.task.NotifyValidatorsOnCommentsTask;
import ch.unige.aou.task.ReindexPublicationsWithEndingEmbargoTask;
import ch.unige.aou.task.SyncThesisToSwissNationalLibraryTask;
import ch.unige.aou.task.SynchronizeOrcidProfile;
import ch.unige.aou.task.SynchronizeOrcidProfilesTask;
import ch.unige.aou.task.SynchronizeResearchGroupsTask;
import ch.unige.aou.task.TaskExecutorService;
@@ -249,7 +249,7 @@ public class ScheduledTaskService extends AouResourceService<ScheduledTask> {
case SYNC_THESES_TO_SWISS_NATIONAL_LIBRARY:
return new SyncThesisToSwissNationalLibraryTask(this, scheduledTask, this.notificationService, this.taskExecutorService);
case SYNCHRONIZE_ORCID_PROFILE:
return new SynchronizeOrcidProfile(this, scheduledTask, this.notificationService, this.taskExecutorService);
return new SynchronizeOrcidProfilesTask(this, scheduledTask, this.notificationService, this.taskExecutorService);
default:
throw new UnsupportedOperationException("Unsupported scheduled task type " + scheduledTask.getTaskType());
}
Loading