[Connect|Trunk]

- update admin portal url property
- use property instead of harcoded url
- use property for admin portal url



git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-connect-portal/trunk@60041 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
argiro.kokogiannaki 2020-12-07 10:23:13 +00:00
parent f55a302878
commit a5dde08d0e
2 changed files with 2 additions and 2 deletions

View File

@ -243,7 +243,7 @@ export class AppComponent {
if (isCommunityManager) {
this.menuItems.push(
{
rootItem: new MenuItem("manage", "Manage", 'https://beta.admin.connect.openaire.eu/dashboard?communityId=' + community.communityId, "", false, [], [], {}),
rootItem: new MenuItem("manage", "Manage", this.properties.adminPortalURL +'/dashboard?communityId=' + community.communityId, "", false, [], [], {}),
items: []
});
}

View File

@ -127,5 +127,5 @@ export let properties: EnvProperties = {
indexInfoAPI: "https://beta.services.openaire.eu/openaire/info/",
altMetricsAPIURL: "https://api.altmetric.com/v1/doi/",
b2noteAPIURL: "http://b2note-dev.bsc.es/",
adminPortalURL: "https://beta.admin.connect.openaire.eu"
adminPortalURL: "https://admin.connect.openaire.eu"
};