I have devise for authentication and I have confirmable in devise for User model.
- I want this to be optional based on the data I send.
- That is there is a
type fieldinUsermodel. - If I send
value 1for type then the confirmable should be present. - if
value is 2then there should not be confirmable and the account should be activated automatically.
How can I do this? Please help!!
I think you can use skip_confirmation! method here. So it will not fire confirmation mail for user and will be confirmed.