-
<!--- updateUser --->
-
<cffunction name="updateUser" hint="I ask Transfer to update a User." displayname="Update Users" access="public" returntype="any" output="false">
-
<cfargument name="ID" hint="I am the ID of the User to update.<br />I am required." />
-
<cfargument name="name" hint="I am the Name of the User to update.<br />I am required." />
-
<cfargument name="email" hint="I am the Email of the User to update.<br />I am required." />
-
<!--- do some tranfer stuff here --->
-
<cfreturn "yes" />
-
</cffunction>