I have devise for authentication and i have not used validatable and i send the request and along to it i send a type. for example
http://localhost:3000/signup/new?type=twitter
in the above shown i have used type=twitterand in case it is twitter i do not want to validate email i.e., do not need validates_presence_of :email but in case i send type=email then i want to check presence of mail and whether mail has not already taken and check mail specified is valid or not? How can i do this? Please help me.