Removing accidental symbols.
This commit is contained in:
parent
9377c7b0f3
commit
82e43e0008
|
@ -8,7 +8,7 @@
|
||||||
if (!$auth.user) {
|
if (!$auth.user) {
|
||||||
$redirect(`./auth`)
|
$redirect(`./auth`)
|
||||||
} else if ($auth.user.builder?.global) {
|
} else if ($auth.user.builder?.global) {
|
||||||
$redirect(`./portal}`)
|
$redirect(`./portal`)
|
||||||
} else {
|
} else {
|
||||||
$redirect(`./apps`)
|
$redirect(`./apps`)
|
||||||
}
|
}
|
||||||
|
|
|
@ -148,8 +148,8 @@ exports.publicSettings = async function (ctx) {
|
||||||
// google button flag
|
// google button flag
|
||||||
if (googleConfig && googleConfig.config) {
|
if (googleConfig && googleConfig.config) {
|
||||||
// activated by default for configs pre-activated flag
|
// activated by default for configs pre-activated flag
|
||||||
config.config.google = googleConfig.config.activated == null ||
|
config.config.google =
|
||||||
googleConfig.config.activated
|
googleConfig.config.activated == null || googleConfig.config.activated
|
||||||
} else {
|
} else {
|
||||||
config.config.google = false
|
config.config.google = false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue