[CST-5339] ORCID queue added.

This commit is contained in:
Pratik Rajkotiya
2022-04-13 18:20:16 +05:30
parent dd4ff5e40c
commit a9162eb920
12 changed files with 717 additions and 3 deletions

View File

@@ -165,6 +165,10 @@ import { SubmissionAccessesModel } from './config/models/config-submission-acces
import { ResearcherProfileService } from './profile/researcher-profile.service';
import { ProfileClaimService } from '../profile-page/profile-claim/profile-claim.service';
import { ResearcherProfile } from './profile/model/researcher-profile.model';
import { OrcidQueueService } from './orcid/orcid-queue.service';
import { OrcidHistoryService } from './orcid/orcid-history.service';
import { OrcidQueue } from './orcid/model/orcid-queue.model';
import { OrcidHistory } from './orcid/model/orcid-history.model';
/**
* When not in production, endpoint responses can be mocked for testing purposes
@@ -290,7 +294,9 @@ const PROVIDERS = [
GroupDataService,
FeedbackDataService,
ResearcherProfileService,
ProfileClaimService
ProfileClaimService,
OrcidQueueService,
OrcidHistoryService,
];
/**
@@ -351,7 +357,9 @@ export const models =
Root,
SearchConfig,
SubmissionAccessesModel,
ResearcherProfile
ResearcherProfile,
OrcidQueue,
OrcidHistory,
];
@NgModule({