Class: EmailPasswordEditForm

Inherits:
ActiveForm
  • Object
show all
Defined in:
app/models/email_password_edit_form.rb

Overview

メール認証情報パスワード編集フォーム

Instance Method Summary collapse

Instance Method Details

#to_email_credential_hashObject



31
32
33
34
35
# File 'app/models/email_password_edit_form.rb', line 31

def to_email_credential_hash
  return {
    :hashed_password => EmailCredential.create_hashed_password(self.password.to_s),
  }
end