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',
|
||||
appLogo: '/static/logo.png',
|
||||
baseUrl: 'myskillbox.ch',
|
||||
licenseUrl: 'https://myskillbox.ch/angebot',
|
||||
|
||||
// mySkillbox texts
|
||||
textAppName: 'mySkillbox',
|
||||
|
|
@ -28,6 +29,7 @@ export const myKvValues: FlavorValues = {
|
|||
appFlavor: 'my-kv',
|
||||
appLogo: 'https://skillbox-my-kv-prod.s3-eu-west-1.amazonaws.com/mykv-logo.png',
|
||||
baseUrl: 'mykv.ch',
|
||||
licenseUrl: 'https://hep.plus/mykv-angebot',
|
||||
|
||||
// myKV texts
|
||||
textAppName: 'myKV',
|
||||
|
|
@ -48,17 +50,20 @@ export const myKvValues: FlavorValues = {
|
|||
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, {
|
||||
appFlavor: 'my-dha',
|
||||
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',
|
||||
textAppName: 'myDHA',
|
||||
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;
|
||||
appLogo: string;
|
||||
baseUrl: string;
|
||||
licenseUrl: string;
|
||||
textAppName: string;
|
||||
textTopic: string;
|
||||
textTopics: string;
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@
|
|||
<div class="links">
|
||||
<ul class="links__list">
|
||||
<li class="links__list-item">
|
||||
<a :href="`https://${$flavor.baseUrl}/angebot`">Lizenz kaufen</a>
|
||||
<a :href="`${$flavor.licenseUrl}`">Lizenz kaufen</a>
|
||||
</li>
|
||||
<li class="links__list-item">
|
||||
<a :href="`https://${$flavor.baseUrl}/support`">Support</a>
|
||||
|
|
|
|||
Loading…
Reference in New Issue