Merge branch 'feature/audit-logs' of github.com:Budibase/budibase into feature/audit-logs
This commit is contained in:
commit
d0fda67046
|
@ -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,
|
||||
|
|
|
@ -2,4 +2,5 @@ export enum Feature {
|
|||
USER_GROUPS = "userGroups",
|
||||
APP_BACKUPS = "appBackups",
|
||||
ENVIRONMENT_VARIABLES = "environmentVariables",
|
||||
AUDIT_LOGS = "auditLogs",
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue