20 lines
470 B
Plaintext
20 lines
470 B
Plaintext
<cfcomponent extends="taffy.core.api">
|
|
<cfscript>
|
|
|
|
this.name = hash(getCurrentTemplatePath());
|
|
|
|
variables.framework = {};
|
|
variables.framework.debugKey = "debug";
|
|
variables.framework.reloadKey = "reload";
|
|
variables.framework.reloadPassword = "true";
|
|
variables.framework.serializer = "taffy.core.nativeJsonSerializer";
|
|
|
|
function onApplicationStart(){
|
|
application.lastReset = now();
|
|
|
|
return super.onApplicationStart();
|
|
}
|
|
|
|
</cfscript>
|
|
</cfcomponent>
|