mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-25 11:16:31 -05:00
test: fix URLs in mock config
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
4720d7c418
commit
7012f807b8
2 changed files with 5 additions and 5 deletions
|
@ -15,9 +15,9 @@ export function createDefaultMockCustomizationConfig(): CustomizationConfig {
|
||||||
customLogo: '',
|
customLogo: '',
|
||||||
},
|
},
|
||||||
specialUrls: {
|
specialUrls: {
|
||||||
privacy: '/test/privacy',
|
privacy: 'https://md.example.org/test/privacy',
|
||||||
termsOfUse: '/test/termsOfUse',
|
termsOfUse: 'https://md.example.org/test/termsOfUse',
|
||||||
imprint: '/test/imprint',
|
imprint: 'https://md.example.org/test/imprint',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,8 +10,8 @@ import { ExternalServicesConfig } from '../external-services.config';
|
||||||
|
|
||||||
export function createDefaultMockExternalServicesConfig(): ExternalServicesConfig {
|
export function createDefaultMockExternalServicesConfig(): ExternalServicesConfig {
|
||||||
return {
|
return {
|
||||||
plantUmlServer: 'plantuml.example.com',
|
plantUmlServer: 'https://plantuml.example.com',
|
||||||
imageProxy: 'imageProxy.example.com',
|
imageProxy: 'https://imageProxy.example.com',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue