Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ describe('LiveChat.component', {}, () => {
// TODO: Change url after the livechat is ready
expect(liveChatIFrame).toHaveAttribute(
'src',
`https://chatbot.ovhcloud.com/livechat-manager/STD/FR_fr/docs/index2.html?v=${format(new Date(), 'yy-MM-dd')}`,
`https://chatbot.ovhcloud.com/livechat-manager/static/STD/FR_fr/docs/index2.html?v=${format(new Date(), 'yy-MM-dd')}`,
);
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ export const CHAT_TYPE_STORAGE_KEY = 'chat_type';

export const ADRIELLY_CHAT_ORIGIN = 'https://chatbot.ovhcloud.com';
export function adriellyChatUrl(customerLevel: string, subsidiary: string, language: string): string {
return `https://chatbot.ovhcloud.com/livechat-manager/${customerLevel}/${subsidiary}_${language}/docs/index2.html`;
return `https://chatbot.ovhcloud.com/livechat-manager/static/${customerLevel}/${subsidiary}_${language}/docs/index2.html`;
}
Loading