79338040

Date: 2025-01-08 05:34:05
Score: 0.5
Natty:
Report link

As invite_key_fields is a class method from the devise_invitable gem, in your User model, you can overwrite this class method (assuming first_name and last_name attrs are in this model):

def self.invite_key_fields
  %i[email first_name last_name]
end
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ffscalco