module Outpost::Model::Authentication

Public Instance Methods

downcase_email() click to toggle source

Private: Downcase the user's e-mail

Returns String of the e-mail

# File lib/outpost/model/authentication.rb, line 31
def downcase_email
  if self.email.present?
    self.email = self.email.downcase
  end
end