redirect to /login
This commit is contained in:
parent
175ee075c7
commit
838d82c3b5
|
@ -59,7 +59,9 @@ async function handshakeSubdomainCheck(done) {
|
||||||
|
|
||||||
// handshakeSubdomainCheck returns the result of accessing account dashboard website
|
// handshakeSubdomainCheck returns the result of accessing account dashboard website
|
||||||
async function accountWebsiteCheck(done) {
|
async function accountWebsiteCheck(done) {
|
||||||
return genericAccessCheck("account_website", process.env.SKYNET_DASHBOARD_URL, done);
|
const url = `${process.env.SKYNET_DASHBOARD_URL}/auth/login`;
|
||||||
|
|
||||||
|
return genericAccessCheck("account_website", url, done);
|
||||||
}
|
}
|
||||||
|
|
||||||
// accountHealthCheck returns the result of accounts service health checks
|
// accountHealthCheck returns the result of accounts service health checks
|
||||||
|
|
Reference in New Issue