Change url to license shop for each environment
This commit is contained in:
parent
bb6425c27f
commit
d940e32868
|
|
@ -4,6 +4,7 @@ export const defaultFlavorValues: FlavorValues = {
|
||||||
appFlavor: 'skillbox',
|
appFlavor: 'skillbox',
|
||||||
appLogo: '/static/logo.png',
|
appLogo: '/static/logo.png',
|
||||||
baseUrl: 'myskillbox.ch',
|
baseUrl: 'myskillbox.ch',
|
||||||
|
licenseUrl: 'https://myskillbox.ch/angebot',
|
||||||
|
|
||||||
// mySkillbox texts
|
// mySkillbox texts
|
||||||
textAppName: 'mySkillbox',
|
textAppName: 'mySkillbox',
|
||||||
|
|
@ -28,6 +29,7 @@ export const myKvValues: FlavorValues = {
|
||||||
appFlavor: 'my-kv',
|
appFlavor: 'my-kv',
|
||||||
appLogo: 'https://skillbox-my-kv-prod.s3-eu-west-1.amazonaws.com/mykv-logo.png',
|
appLogo: 'https://skillbox-my-kv-prod.s3-eu-west-1.amazonaws.com/mykv-logo.png',
|
||||||
baseUrl: 'mykv.ch',
|
baseUrl: 'mykv.ch',
|
||||||
|
licenseUrl: 'https://hep.plus/mykv-angebot',
|
||||||
|
|
||||||
// myKV texts
|
// myKV texts
|
||||||
textAppName: 'myKV',
|
textAppName: 'myKV',
|
||||||
|
|
@ -48,17 +50,20 @@ export const myKvValues: FlavorValues = {
|
||||||
helloIllustration: 'HelloMyKVIllustration',
|
helloIllustration: 'HelloMyKVIllustration',
|
||||||
};
|
};
|
||||||
|
|
||||||
export const dhfValues: FlavorValues = Object.assign({}, myKvValues, {
|
|
||||||
appFlavor: 'my-dhf',
|
|
||||||
baseUrl: 'mydetailhandel.ch',
|
|
||||||
appLogo: 'https://skillbox-my-detailhandel-dhf-prod.s3.eu-central-1.amazonaws.com/myDHF-logo.png',
|
|
||||||
textAppName: 'myDHF',
|
|
||||||
helloIllustration: 'HelloMyDHFIllustration',
|
|
||||||
});
|
|
||||||
export const dhaValues: FlavorValues = Object.assign({}, myKvValues, {
|
export const dhaValues: FlavorValues = Object.assign({}, myKvValues, {
|
||||||
appFlavor: 'my-dha',
|
appFlavor: 'my-dha',
|
||||||
baseUrl: 'mydetailhandel.ch',
|
baseUrl: 'mydetailhandel.ch',
|
||||||
|
licenseUrl: 'https://hep.plus/mydha-angebot',
|
||||||
appLogo: 'https://skillbox-my-detailhandel-dha-prod.s3.eu-central-1.amazonaws.com/myDHA-logo.png',
|
appLogo: 'https://skillbox-my-detailhandel-dha-prod.s3.eu-central-1.amazonaws.com/myDHA-logo.png',
|
||||||
textAppName: 'myDHA',
|
textAppName: 'myDHA',
|
||||||
helloIllustration: 'HelloMyDHAIllustration',
|
helloIllustration: 'HelloMyDHAIllustration',
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export const dhfValues: FlavorValues = Object.assign({}, myKvValues, {
|
||||||
|
appFlavor: 'my-dhf',
|
||||||
|
baseUrl: 'mydetailhandel.ch',
|
||||||
|
licenseUrl: 'https://hep.plus/mydhf-angebot',
|
||||||
|
appLogo: 'https://skillbox-my-detailhandel-dhf-prod.s3.eu-central-1.amazonaws.com/myDHF-logo.png',
|
||||||
|
textAppName: 'myDHF',
|
||||||
|
helloIllustration: 'HelloMyDHFIllustration',
|
||||||
|
});
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@ export interface FlavorValues {
|
||||||
appFlavor: string;
|
appFlavor: string;
|
||||||
appLogo: string;
|
appLogo: string;
|
||||||
baseUrl: string;
|
baseUrl: string;
|
||||||
|
licenseUrl: string;
|
||||||
textAppName: string;
|
textAppName: string;
|
||||||
textTopic: string;
|
textTopic: string;
|
||||||
textTopics: string;
|
textTopics: string;
|
||||||
|
|
|
||||||
|
|
@ -63,7 +63,7 @@
|
||||||
<div class="links">
|
<div class="links">
|
||||||
<ul class="links__list">
|
<ul class="links__list">
|
||||||
<li class="links__list-item">
|
<li class="links__list-item">
|
||||||
<a :href="`https://${$flavor.baseUrl}/angebot`">Lizenz kaufen</a>
|
<a :href="`${$flavor.licenseUrl}`">Lizenz kaufen</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="links__list-item">
|
<li class="links__list-item">
|
||||||
<a :href="`https://${$flavor.baseUrl}/support`">Support</a>
|
<a :href="`https://${$flavor.baseUrl}/support`">Support</a>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue