Linting
This commit is contained in:
parent
ad61f2af3b
commit
46a886f83d
|
@ -36,7 +36,10 @@ module.exports = async (ctx, next) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
// deny access to application preview
|
// deny access to application preview
|
||||||
if (isDevAppID(requestAppId) && (!ctx.user || !ctx.user.builder?.global)) {
|
if (
|
||||||
|
isDevAppID(requestAppId) &&
|
||||||
|
(!ctx.user || !ctx.user.builder || !ctx.user.builder.global)
|
||||||
|
) {
|
||||||
clearCookie(ctx, Cookies.CurrentApp)
|
clearCookie(ctx, Cookies.CurrentApp)
|
||||||
return ctx.redirect("/")
|
return ctx.redirect("/")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue