diff --git a/connect/statistics/statisticsEntities.ts b/connect/statistics/statisticsEntities.ts index 1a727277..d36f199c 100644 --- a/connect/statistics/statisticsEntities.ts +++ b/connect/statistics/statisticsEntities.ts @@ -18,13 +18,15 @@ export const availableNumbers = [ export const availableEntities = [ 'publication', 'dataset', - 'software' + 'software', + 'orp', ]; export const availableEntitiesMap = new Map([ ['publication', 'Publications'], ['dataset', 'Research Data'], - ['software', 'Software'] + ['software', 'Software'], + ['orp', 'Other Research products'], ]); export class DisplayStatsOptions { @@ -62,4 +64,4 @@ export class StatisticsSummary { software: StatisticsNumbers; total_projects: number; virtual_organizations: number; -} \ No newline at end of file +} diff --git a/utils/properties/environment-specific.service.ts b/utils/properties/environment-specific.service.ts index c93f2716..b3a9f32e 100644 --- a/utils/properties/environment-specific.service.ts +++ b/utils/properties/environment-specific.service.ts @@ -21,6 +21,7 @@ export class EnvironmentSpecificService { private serverUrl = "http://scoobydoo.di.uoa.gr:4000"; // private serverUrl = "https://beta.explore.openaire.eu"; // private serverUrl = "https://beta.connect.openaire.eu"; + // private serverUrl = "https://beta.admin.connect.openaire.eu"; constructor(private http: Http, @Inject(PLATFORM_ID) private platformId: string) { this.testBrowser = isPlatformBrowser(platformId); if (this.testBrowser) {