Use Testflight public links instead of Fastlane signup page
This commit is contained in:
parent
8231e7eb17
commit
0a86450317
|
@ -18,7 +18,7 @@
|
|||
}
|
||||
|
||||
function testFlightURL() {
|
||||
return "https://status.im/success";
|
||||
return "https://testflight.apple.com/join/J8EuJmey";
|
||||
}
|
||||
|
||||
function webURL() {
|
||||
|
|
|
@ -25,7 +25,7 @@ router.get('/', function (req, res, next) {
|
|||
if (isAndroid(userAgent)) {
|
||||
return res.redirect("https://play.google.com/store/apps/details?id=im.status.ethereum");
|
||||
} else if (isIOS(userAgent)) {
|
||||
return res.redirect("https://status.im/success");
|
||||
return res.redirect("https://testflight.apple.com/join/J8EuJmey");
|
||||
}
|
||||
|
||||
return res.redirect("https://status.im");
|
||||
|
|
|
@ -24,7 +24,7 @@ shakedown GET / -H "User-Agent: Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/
|
|||
|
||||
# IOS
|
||||
shakedown GET / -H "User-Agent: Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1"
|
||||
header_contains 'Location' 'https://status.im/success'
|
||||
header_contains 'Location' 'https://testflight.apple.com/join/J8EuJmey'
|
||||
status 302
|
||||
|
||||
# Anything else
|
||||
|
|
Loading…
Reference in New Issue