-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path_config.js
56 lines (51 loc) · 1.35 KB
/
_config.js
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
lbs.externalConfig = {
/**
Enable or disable the debug console
for the whole application
**/
debug: false,
verboseLevel: "debug",
/*
Verbose levels:
debug : Shows all log levels
info : Shows information level and up
warn : Shows warning level and up
error : Shows only error level logs
*/
/**
Configure special use cases,
mainly when requiring additional datasources
**/
config:{
index: {
dataSources: [
{ type: 'localization', source: '' },
{ type: 'activeUser', source:''}
],
autorefresh : false
},
todo: {
dataSources: [
{type: 'activeInspector', source: ''},
{type: 'localization', source: '' },
{type: 'relatedRecord', source: 'person', view: 'name;phone;email;mobilephone', alias: 'person'},
{type: 'relatedRecord', source: 'company', view: 'name;phone', alias: 'company'}
],
autorefresh : false
},
// 'company' : {
// dataSources: [
// {type: 'activeInspector', source: ''},
// {type: 'records', source: 'ActionPadTools.GetTestData', alias: 'heppnode' },
// ],
// autorefresh : false
// },
// 'person' : {
// dataSources: [
// {type: 'activeInspector', source: ''},
// {type: 'relatedRecord', source: 'company'},
// ],
// autorefresh : false
// },
}
}