-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathModuleConfig.cfc
More file actions
28 lines (25 loc) · 759 Bytes
/
ModuleConfig.cfc
File metadata and controls
28 lines (25 loc) · 759 Bytes
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
/**
*********************************************************************************
* Copyright Since 2017 CommandBox by Ortus Solutions, Corp
* www.ortussolutions.com
********************************************************************************
* @author Brad Wood
*/
component {
this.title = "CFConfig CI";
this.modelNamespace = "commandbox-cfconfig";
this.cfmapping = "commandbox-cfconfig";
this.autoMapModels = true;
// Need these loaded up first so I can do my job.
this.dependencies = [ 'cfconfig-services' ];
function configure() {
settings = {
'exportOnStop' = false,
'autoTransferOnUpgrade' = true,
'JSONExpansions' : {}
};
interceptors = [
{ class='#moduleMapping#.interceptors.ConfigLoader' }
];
}
}