coldbox-3.5.0 / relax 1.7

Is the documentation for Relax http://www.coldbox.org/forgebox/view/coldbox-relax out of date? I tried dropping the relax module in my CB app and loaded the URL, but I keep getting the error:
" The API you are trying to load: does not exist Path: C:\inetpub\wwwroot\cbapp\modules\relax\resources "

I notice the default defaultApi setting in the module config is ‘myapi’ and that folder exists in the resources directory… I’m sure I’m missing something, can anyone point me in the right direction?

er, linked the wrong document URL, this is the correct one I was trying to mention: http://wiki.coldbox.org/wiki/Projects:Relax.cfm

Yes the current module needs a fix for 3.52

ah okay, is the fix on github somewhere so I can apply it?

Yea relax git

Luis Majano
CEO
Ortus Solutions, Corp
www.ortussolutions.com

ColdBox Platform: http://www.coldbox.org
Linked In: http://www.linkedin.com/pub/3/731/483
Social: twitter.com/ortussolutions | twitter.com/coldbox | twitter.com/lmajano

I cloned Coldbox from github, switched to the development branch… did the same for relax, but I’m still getting the error?

If someone could let me know what I’m doing wrong I’d really appreciate it.

Is the problem just line #64 of model/DSLService.cfc ?

Should it be changed from:
return userStorage.getVar(“relax-api”, “”);
to:
return userStorage.getVar(“relax-api”, instance.settings.defaultAPI );
?