Getting Started
component extends="coldbox.system.remote.ColdboxProxy"{
}Organization
/Application
/remote
+ MyProxy.cfccomponent extends="coldbox.system.remote.ColdboxProxy"{
/**
* Get user data
* @id The id of the user list to return
*/
array function getData( required numeric id ){
arguments.event = "users.getListData";
var results = super.process( argumentCollection=arguments );
return results ?: [];
}
}AppMapping
Last updated
Was this helpful?