0

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?

1 Answers1

0

Use ActiveRecord::Callbacks#before_create

Write this in your User model

before_create :my_method

def my_method
 self.skip_confirmation!
end
Gagan Gami
  • 10,121
  • 1
  • 29
  • 55