-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathModuleConfig.cfc
More file actions
23 lines (21 loc) · 679 Bytes
/
ModuleConfig.cfc
File metadata and controls
23 lines (21 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
*********************************************************************************
* Copyright Since 2017 CommandBox by Ortus Solutions, Corp
* www.ortussolutions.com
********************************************************************************
* @author Brad Wood
*
*/
component {
this.title = "CFConfig Services";
this.modelNamespace = "cfconfig-services";
this.cfmapping = "cfconfig-services";
this.autoMapModels = true;
// Need these loaded up first so I can do my job.
this.dependencies = [ 'PropertyFile','lucee-password-util','adobe-password-util' ];
function configure() {
settings = {
"redisCachePasswordAlwaysPlainText" : false
};
}
}