I want to skip confirmation email in signup and want to send manually. To skip I will do
@user.skip_confirmation!
But where to write this line?
I want to skip confirmation email in signup and want to send manually. To skip I will do
@user.skip_confirmation!
But where to write this line?
Use ActiveRecord::Callbacks#before_create
Write this in your User model
before_create :my_method
def my_method
self.skip_confirmation!
end