Update to Angular 16 #2
|
@ -1 +1 @@
|
|||
Subproject commit f6e927f4c2e9fee5518182d3b770548ccd2c8d37
|
||||
Subproject commit 5184ffad194e23864411f989f9403cd984afb4a3
|
|
@ -1 +1 @@
|
|||
Subproject commit 9e58421a1adf3fbeb361e21616feaea8c7f867af
|
||||
Subproject commit d1b2d5e585722751792d12645d17f820cd6a7860
|
|
@ -1,6 +1,7 @@
|
|||
import {EnvProperties} from "../app/openaireLibrary/utils/properties/env-properties";
|
||||
import {common, commonBeta} from "../app/openaireLibrary/utils/properties/environments/environment";
|
||||
|
||||
export let properties: EnvProperties = {
|
||||
let props: EnvProperties = {
|
||||
environment: "beta",
|
||||
adminToolsPortalType: "aggregator",
|
||||
dashboard: "aggregator",
|
||||
|
@ -126,3 +127,7 @@ export let properties: EnvProperties = {
|
|||
footerGrantText : "This OpenAIRE gateway is part of a project that has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreements No. 777541 and 101017452"
|
||||
|
||||
};
|
||||
|
||||
export let properties: EnvProperties = {
|
||||
...props, ...common, ...commonBeta
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
import {EnvProperties} from "../app/openaireLibrary/utils/properties/env-properties";
|
||||
import {common, commonProd} from "../app/openaireLibrary/utils/properties/environments/environment";
|
||||
|
||||
export let properties: EnvProperties = {
|
||||
let props: EnvProperties = {
|
||||
environment: "production",
|
||||
adminToolsPortalType: "aggregator",
|
||||
dashboard: "aggregator",
|
||||
|
@ -128,3 +129,7 @@ export let properties: EnvProperties = {
|
|||
footerGrantText : "This OpenAIRE gateway is part of a project that has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreements No. 777541 and 101017452"
|
||||
|
||||
};
|
||||
|
||||
export let properties: EnvProperties = {
|
||||
...props, ...common, ...commonProd
|
||||
}
|
|
@ -4,8 +4,9 @@
|
|||
// The list of which env maps to which file can be found in `.angular-cli.json`.
|
||||
|
||||
import {EnvProperties} from "../app/openaireLibrary/utils/properties/env-properties";
|
||||
import {common, commonDev} from "../app/openaireLibrary/utils/properties/environments/environment";
|
||||
|
||||
export let properties: EnvProperties = {
|
||||
let props: EnvProperties = {
|
||||
environment: "development",
|
||||
adminToolsPortalType: "aggregator",
|
||||
dashboard: "aggregator",
|
||||
|
@ -130,3 +131,7 @@ export let properties: EnvProperties = {
|
|||
reCaptchaSiteKey: null,
|
||||
footerGrantText : "This OpenAIRE gateway is part of a project that has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreements No. 777541 and 101017452"
|
||||
};
|
||||
|
||||
export let properties: EnvProperties = {
|
||||
...props, ...common, ...commonDev
|
||||
}
|
Loading…
Reference in New Issue