Rebase on posthog-feature-flags

This commit is contained in:
Sam Rose 2024-08-09 14:00:16 +01:00
parent aaaf173295
commit 1b556f29fe
No known key found for this signature in database
3 changed files with 9 additions and 6 deletions

View File

@ -44,6 +44,7 @@
import { RowUtils } from "@budibase/frontend-core"
import ServerBindingPanel from "components/common/bindings/ServerBindingPanel.svelte"
import OptionsEditor from "./OptionsEditor.svelte"
import { isEnabled, TENANT_FEATURE_FLAGS } from "helpers/featureFlags"
const AUTO_TYPE = FieldType.AUTO
const FORMULA_TYPE = FieldType.FORMULA
@ -168,11 +169,12 @@
editableColumn?.type !== JSON_TYPE &&
!editableColumn.autocolumn
$: canHaveDefault =
editableColumn?.type === FieldType.NUMBER ||
isEnabled(TENANT_FEATURE_FLAGS.DEFAULT_VALUES) &&
(editableColumn?.type === FieldType.NUMBER ||
editableColumn?.type === FieldType.JSON ||
editableColumn?.type === FieldType.DATETIME ||
editableColumn?.type === FieldType.LONGFORM ||
editableColumn?.type === FieldType.STRING
editableColumn?.type === FieldType.STRING)
$: canBeRequired =
editableColumn?.type !== LINK_TYPE &&
!uneditable &&

View File

@ -6,6 +6,7 @@ export const TENANT_FEATURE_FLAGS = {
USER_GROUPS: "USER_GROUPS",
ONBOARDING_TOUR: "ONBOARDING_TOUR",
GOOGLE_SHEETS: "GOOGLE_SHEETS",
DEFAULT_VALUES: "DEFAULT_VALUES",
}
export const isEnabled = featureFlag => {

View File

@ -96,11 +96,11 @@ export default server.listen(parseInt(env.PORT || "4002"), async () => {
console.log(startupLog)
await initPro()
await redis.clients.init()
features.init()
cache.docWritethrough.init()
// configure events to use the pro audit log write
// can't integrate directly into backend-core due to cyclic issues
await events.processors.init(proSdk.auditLogs.write)
features.init()
})
process.on("uncaughtException", err => {