Hi Friends, How to skip before_create on particular controller alone in rails
example
class User < ActiveRecord::Base
before_create :validate_email
def validate_email
----
end
end
I want this to be skipped on this controller alone,
class FriendsController < ApplicationController
def new
end
def create
end
end