layouts setting in ModuleConfig.cfc

I have a module called directories.

In this module I have a folder in views called admin ([root]/modules/directories/views/admin/).

I want to set for a layouts directive for all views rendered in this folder, and have attempted to so so using the layouts configuration in ModuleConfig.cfc.

Here is what I have now:

`

layouts = [

{ name=“admin”,file=“Admin.cfm”, folders=“admin” }

];

`

I have also tried /admin/* admin. and a whole range of others… but I can’t get it to display this layout for views under this folder.

Does this setting even work in the ModuleConfig? If so, can anyone suggest what regex I need to use to apply this layout to views under [root]/modules/directories/views/admin/*?

Thanks in advance.

Jason