I have an Account class, want to implement transfer screens to allow a user to transfer money between 2 accounts.
How would I implement this ins RESTfull way?
I have the standard account and rest actions for that, thats fine. But how would I implement transfer?
Normally I would just add a method called "transfer" (called to render the screen) and "transfer_update"(called on submit) to the accounts controller and corresponding views, but I don think this is very RESTfull.
thanks Joel