Merge branch 'feature/audit-logs' of github.com:Budibase/budibase into feature/audit-logs

This commit is contained in:
mike12345567 2023-02-13 17:16:38 +00:00
commit d0fda67046
2 changed files with 2 additions and 2 deletions

View File

@ -64,10 +64,9 @@ export const createLicensingStore = () => {
Constants.Features.ENVIRONMENT_VARIABLES
)
let auditLogsEnabled = license.features.includes(
const auditLogsEnabled = license.features.includes(
Constants.Features.AUDIT_LOGS
)
auditLogsEnabled = true
store.update(state => {
return {
...state,

View File

@ -2,4 +2,5 @@ export enum Feature {
USER_GROUPS = "userGroups",
APP_BACKUPS = "appBackups",
ENVIRONMENT_VARIABLES = "environmentVariables",
AUDIT_LOGS = "auditLogs",
}