mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -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: '',
|
||||
},
|
||||
specialUrls: {
|
||||
privacy: '/test/privacy',
|
||||
termsOfUse: '/test/termsOfUse',
|
||||
imprint: '/test/imprint',
|
||||
privacy: 'https://md.example.org/test/privacy',
|
||||
termsOfUse: 'https://md.example.org/test/termsOfUse',
|
||||
imprint: 'https://md.example.org/test/imprint',
|
||||
},
|
||||
};
|
||||
}
|
||||
|
|
|
@ -10,8 +10,8 @@ import { ExternalServicesConfig } from '../external-services.config';
|
|||
|
||||
export function createDefaultMockExternalServicesConfig(): ExternalServicesConfig {
|
||||
return {
|
||||
plantUmlServer: 'plantuml.example.com',
|
||||
imageProxy: 'imageProxy.example.com',
|
||||
plantUmlServer: 'https://plantuml.example.com',
|
||||
imageProxy: 'https://imageProxy.example.com',
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue