Files
LLM-UI/Application.cfc
T
2026-06-03 15:55:08 +03:00

17 lines
564 B
Plaintext

<cfcomponent displayname="Application" output="true">
<cfset this.Name = "llmui" />
<cfset this.applicationTimeout = createTimeSpan(0, 0, 3, 0) />
<cfset this.sessionmanagement = "Yes" />
<cffunction name="OnApplicationStart" access="public" returntype="boolean" output="false">
<cfreturn true />
</cffunction>
<cffunction name="OnRequestStart" access="public" returntype="boolean" output="false">
<cfargument name="targetPage" type="string" required="true" />
<cfreturn true />
</cffunction>
</cfcomponent>