Skip to content

Commit 68d091b

Browse files
committed
refactor: move to es6 modules
1 parent ab784dc commit 68d091b

21 files changed

Lines changed: 345 additions & 300 deletions

File tree

packages/oae-activity/config/activity.js

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,16 @@
1515

1616
import { Bool } from 'oae-config/lib/fields';
1717

18-
module.exports = {
19-
title: 'OAE Activity Module',
20-
activity: {
21-
name: 'Activity Configuration',
22-
description: 'Core Configuration',
23-
elements: {
24-
enabled: new Bool(
25-
'Activity Posting Enabled',
26-
'When disabled, no actions originating from the tenant will trigger an activity',
27-
true,
28-
{ tenantOverride: false, suppress: true }
29-
)
30-
}
18+
export const title = 'OAE Activity Module';
19+
export const activity = {
20+
name: 'Activity Configuration',
21+
description: 'Core Configuration',
22+
elements: {
23+
enabled: new Bool(
24+
'Activity Posting Enabled',
25+
'When disabled, no actions originating from the tenant will trigger an activity',
26+
true,
27+
{ tenantOverride: false, suppress: true }
28+
)
3129
}
3230
};

0 commit comments

Comments
 (0)