Files
2024-10-23 11:17:42 +03:00

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>