Merge pull request #2052 from chenba/2046-support-panel-email-verified

fix(support panel): display correct email verified status
This commit is contained in:
Les Orchard 2019-08-02 14:06:59 -07:00 коммит произвёл GitHub
Родитель c5d740e9ed 774de1a4c1
Коммит 6fb31006af
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -133,7 +133,7 @@ class SupportController {
return { name: d.name, type: d.type, created: String(new Date(d.createdAt)) };
}),
email: account.email,
emailVerified: account.emailVerified,
emailVerified: !!account.emailVerified,
locale: account.locale,
subscriptionStatus: hasSubscriptions,
twoFactorAuth: totpEnabled,