1
0
Fork 0
mirror of synced 2024-06-28 11:00:55 +12:00

re-adding account portal check

This commit is contained in:
Martin McKeaveney 2022-06-30 12:58:10 +01:00
parent b7d4e45e20
commit e49a2147cd

View file

@ -142,7 +142,13 @@ exports.getBudibaseVersion = async ctx => {
exports.checkBetaAccess = async ctx => {
// go to the cloud platform if running self hosted
if (env.SELF_HOSTED || !env.MULTI_TENANCY) {
const baseUrl = env.ACCOUNT_PORTAL_URL.replace("account.", "")
let baseUrl = ""
if (env.ACCOUNT_PORTAL_URL) {
baseUrl = env.ACCOUNT_PORTAL_URL.replace("account.", "")
} else {
baseUrl = "https://budibase.app"
}
const response = await fetch(
`${baseUrl}/api/beta/access?email=${ctx.query.email}`
)