Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions config/Coldbox.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ component {
* you create the appropriate functions and define the environment in your .env or
* in the `environments` struct.
*/
coldbox = {
variables.coldbox = {
// Application Setup
appName : getSystemSetting( "APPNAME", "Your app name here" ),
eventName : "event",
Expand Down Expand Up @@ -60,7 +60,7 @@ component {
* Custom Settings
* --------------------------------------------------------------------------
*/
settings = {};
variables.settings = {};

/**
* --------------------------------------------------------------------------
Expand All @@ -80,7 +80,7 @@ component {
* Module Loading Directives
* --------------------------------------------------------------------------
*/
modules = {
variables.modules = {
// An array of modules names to load, empty means all of them
include : [],
// An array of modules names to NOT load, empty means none
Expand All @@ -94,7 +94,7 @@ component {
* By Default we log to the console, but you can add many appenders or destinations to log to.
* You can also choose the logging level of the root logger, or even the actual appender.
*/
logBox = {
variables.logBox = {
// Define Appenders
appenders : { coldboxTracer : { class : "coldbox.system.logging.appenders.ConsoleAppender" } },
// Root Logger
Expand All @@ -108,22 +108,22 @@ component {
* Layout Settings
* --------------------------------------------------------------------------
*/
layoutSettings = { defaultLayout : "", defaultView : "" };
variables.layoutSettings = { defaultLayout : "", defaultView : "" };

/**
* --------------------------------------------------------------------------
* Custom Interception Points
* --------------------------------------------------------------------------
*/
interceptorSettings = { customInterceptionPoints : [] };
variables.interceptorSettings = { customInterceptionPoints : [] };

/**
* --------------------------------------------------------------------------
* Application Interceptors
* --------------------------------------------------------------------------
* Remember that the order of declaration is the order they will be registered and fired
*/
interceptors = [];
variables.interceptors = [];

/**
* --------------------------------------------------------------------------
Expand All @@ -138,15 +138,15 @@ component {
*
* }
*/
moduleSettings = {};
variables.moduleSettings = {};

/**
* --------------------------------------------------------------------------
* Flash Scope Settings
* --------------------------------------------------------------------------
* The available scopes are : session, client, cluster, ColdBoxCache, or a full instantiation CFC path
*/
flash = {
variables.flash = {
scope : "session",
properties : {}, // constructor properties for the flash scope implementation
inflateToRC : true, // automatically inflate flash data into the RC scope
Expand All @@ -160,7 +160,7 @@ component {
* App Conventions
* --------------------------------------------------------------------------
*/
conventions = {
variables.conventions = {
handlersLocation : "handlers",
viewsLocation : "views",
layoutsLocation : "layouts",
Expand Down
Loading