Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: broken links with new docs #550

Merged
merged 4 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 2 additions & 2 deletions fastlane/metadata/ios/en-GB/privacy_url.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
https://didroom.com/guides/7_terms-and-conditions/privacy-policy.html

https://didroom.com/guides/Terms-and-conditions/privacy-policy.html

2 changes: 1 addition & 1 deletion fastlane/metadata/ios/en-GB/support_url.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://didroom.com/guides/1_orgadmin/support.html
https://didroom.com/guides/Orgadmin/support.html
4 changes: 2 additions & 2 deletions tests/fixtures/pages/SettingsPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ export class SettingsPage extends BasePage {

async goToSupportPage() {
await this.supportButton.click();
await expect(this.page).toHaveURL('https://didroom.com/guides/1_orgadmin/support.html');
await expect(this.page).toHaveURL('https://didroom.com/guides/Orgadmin/support.html');
}

async goToPrivacyPolicy() {
await this.privacyPolicyButton.click();
await expect(this.page).toHaveURL(
'https://didroom.com/guides/7_terms-and-conditions/privacy-policy.html'
'https://didroom.com/guides/Terms-and-conditions/privacy-policy.html'
phoebus-84 marked this conversation as resolved.
Show resolved Hide resolved
);
}

Expand Down
Loading