Hi,
I am writing a YII application. For the sign up process I have two models written: User, SignupForm.
In my User model I have a list of rules defined e.g. the email attribute must be validated as an email. The same attribute I have it defined in SignupForm also.
I have the feeling that I am doing it wrong, since my codes is now doing the field validation twice, namely in the User object and in the SignupForm model.
Can some one shed some light on this matter? Thank you in advance.