I have 3 controllers, Tokens, Stores
and Users
.
Token is related to the two other models, for each token there is a owner-type and owner-id.
There is also a function in both User_controller and Store_controller, called EmailTokenToUser which send the activation link to the person that registered a user or a store.
My question is: should i pass the function to the token? if so, how should i call it? (requestAction is a bad idea, creating an object just for one function..)
any ideas?