Closed philnash closed 6 years ago
This addresses #7 to change the ActiveModel validator to used not_pwned over pwned so that it reads better.
ActiveModel
not_pwned
pwned
class User < ApplicationRecord validates :password, not_pwned: true end
The old version is still present, but deprecated.
Interested to hear what you think @kpumuk?
Logically it totally makes sense. Not a big fan of the name tho :-) But due to the lack of better alternatives – why not.
This addresses #7 to change the
ActiveModel
validator to usednot_pwned
overpwned
so that it reads better.The old version is still present, but deprecated.