We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 40ac65e + 49f8fbd commit cc87f5bCopy full SHA for cc87f5b
vendor/wheels/Plugins.cfc
@@ -255,6 +255,8 @@ component output="false" extends="wheels.Global"{
255
$wheels.className = $wheels.metaData.displayName;
256
} else if (findNoCase("controllers", $wheels.metaData.fullname)){
257
$wheels.className = "controller";
258
+ } else if (findNoCase("models", $wheels.metaData.fullname)){
259
+ $wheels.className = "model";
260
} else {
261
$wheels.className = Reverse(SpanExcluding(Reverse($wheels.metaData.name), "."));
262
}
0 commit comments