Getting the following deprecation notice when running the Rails 6 pre-release:
DEPRECATION WARNING: update_attributes is deprecated and will be removed from Rails 6.1 (please, use update instead)
Replacing update_attributes with update here should make it go away:
|
update_attributes(direct_otp: nil, direct_otp_sent_at: nil) |
Note: The update_attributes method was renamed to use update in this pull request in 2013.
Getting the following deprecation notice when running the Rails 6 pre-release:
Replacing
update_attributeswithupdatehere should make it go away:two_factor_authentication/lib/two_factor_authentication/models/two_factor_authenticatable.rb
Line 122 in 1d6c978
Note: The update_attributes method was renamed to use update in this pull request in 2013.