1
0
Fork 0
mirror of synced 2024-07-07 15:25:52 +12:00

Handle no license found

This commit is contained in:
Rory Powell 2022-03-02 07:27:14 +00:00
parent ee7fdcfaba
commit 4df48d306c
2 changed files with 8 additions and 1 deletions

View file

@ -17,7 +17,9 @@ const populateFromDB = async (userId, tenantId) => {
// TODO: Break this out into it's own cache
if (account) {
const license = await accounts.getLicense(user.tenantId)
user.license = license
if (license) {
user.license = license
}
user.account = account
user.accountPortalAccess = true
}

View file

@ -31,6 +31,11 @@ exports.getLicense = async tenantId => {
},
})
if (response.status === 404) {
// no license for the tenant
return
}
if (response.status !== 200) {
const text = await response.text()
console.error("Error getting license: ", text)