Sha256: 8d3723ebfdcc1113536247ccf37e7d6cac9379ad6f4cdf18d020f142c9dbd2d2
Contents?: true
Size: 269 Bytes
Versions: 17
Compression:
Stored size: 269 Bytes
Contents
class UpdatePasswordForm < ApplicationForm attr_accessor :current_password, :password, :password_confirmation validates :current_password, presence: true, current_password: true validates :password, presence: true, confirmation: true, length: { minimum: 8 } end
Version data entries
17 entries across 17 versions & 1 rubygems