forked from Ortus-Solutions/commandbox-cfconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModuleConfig.cfc
More file actions
27 lines (24 loc) · 733 Bytes
/
ModuleConfig.cfc
File metadata and controls
27 lines (24 loc) · 733 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
/**
*********************************************************************************
* 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
};
interceptors = [
{ class='#moduleMapping#.interceptors.ConfigLoader' }
];
}
}