Rename some usages of feature flags to tenant feature flags
This commit is contained in:
parent
9b29bd6709
commit
9b02286a96
|
@ -8,7 +8,7 @@
|
|||
import { ExpiringKeys } from "./constants"
|
||||
import { getBanners } from "./licensingBanners"
|
||||
import { banner } from "@budibase/bbui"
|
||||
import { FEATURE_FLAGS, isEnabled } from "../../../helpers/featureFlags"
|
||||
import { TENANT_FEATURE_FLAGS, isEnabled } from "helpers/featureFlags"
|
||||
|
||||
const oneDayInSeconds = 86400
|
||||
|
||||
|
@ -86,7 +86,7 @@
|
|||
userLoaded &&
|
||||
licensingLoaded &&
|
||||
loaded &&
|
||||
isEnabled(FEATURE_FLAGS.LICENSING)
|
||||
isEnabled(TENANT_FEATURE_FLAGS.LICENSING)
|
||||
) {
|
||||
queuedModals = processModals()
|
||||
queuedBanners = getBanners()
|
||||
|
|
|
@ -3,7 +3,7 @@ import { API } from "api"
|
|||
import { auth } from "stores/portal"
|
||||
import { Constants } from "@budibase/frontend-core"
|
||||
import { StripeStatus } from "components/portal/licensing/constants"
|
||||
import { FEATURE_FLAGS, isEnabled } from "../../helpers/featureFlags"
|
||||
import { TENANT_FEATURE_FLAGS, isEnabled } from "../../helpers/featureFlags"
|
||||
|
||||
export const createLicensingStore = () => {
|
||||
const DEFAULT = {
|
||||
|
@ -29,7 +29,7 @@ export const createLicensingStore = () => {
|
|||
})
|
||||
},
|
||||
getUsageMetrics: async () => {
|
||||
if (isEnabled(FEATURE_FLAGS.LICENSING)) {
|
||||
if (isEnabled(TENANT_FEATURE_FLAGS.LICENSING)) {
|
||||
const quota = get(store).quotaUsage
|
||||
const license = get(auth).user.license
|
||||
const now = new Date()
|
||||
|
|
Loading…
Reference in New Issue