-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathfeatures.js
More file actions
60 lines (60 loc) · 1.68 KB
/
Copy pathfeatures.js
File metadata and controls
60 lines (60 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
const featureList = [
'shared-library',
'projectComms',
'ha',
'teamHttpSecurity',
'customCatalogs',
'emailAlerts',
'deviceGroups',
'protectedInstance',
'editorLimits',
'customHostnames',
'staticAssets',
'instanceAutoSnapshot',
'deviceAutoSnapshot',
'bom',
'teamBroker',
'projectHistory',
'npm',
'gitIntegration',
'instanceResources',
'tables',
'certifiedNodes',
'ai',
'assistantInlineCompletions',
'generatedSnapshotDescription',
'ffNodes',
'rbacApplication'
]
const featureNames = {
'shared-library': 'Team Library',
projectComms: 'Project Nodes',
ha: 'High Availability',
teamHttpSecurity: 'Team-based Endpoint Security',
customCatalogs: 'Custom NPM Catalogs',
emailAlerts: 'Email Alerts',
deviceGroups: 'Device Groups',
protectedInstance: 'Protected Instances',
editorLimits: 'API/Debug Length Limit',
customHostnames: 'Custom Hostnames',
staticAssets: 'Static Assets',
instanceAutoSnapshot: 'Instance Auto Snapshot',
deviceAutoSnapshot: 'Device Auto Snapshot',
bom: 'Bill of Materials / Dependencies',
teamBroker: 'Team Broker',
projectHistory: 'Version History Timeline',
npm: 'NPM Packages',
gitIntegration: 'Git Integration',
instanceResources: 'Instance Resources',
tables: 'Tables',
certifiedNodes: 'Certified Nodes',
ai: 'AI Features',
assistantInlineCompletions: 'Assistant Inline Code Completions',
generatedSnapshotDescription: 'Generate Snapshot Descriptions',
ffNodes: 'FlowFuse Exclusive Nodes',
rbacApplication: 'Application-level RBAC'
}
module.exports = {
featureList,
featureNames
}