Sha256: bd1a07279e712f42ebab2ea8793339f345c68af956a581abf332902505a7b13b
Contents?: true
Size: 337 Bytes
Versions: 1
Compression:
Stored size: 337 Bytes
Contents
# frozen_string_literal: true module FormData class Account < Base attribute :email, String attribute :password, String attribute :device_uid, String validates :email, presence: true, length: { maximum: 130 }, email: true validates :password, presence: true, length: { minimum: 6, maximum: 128 } end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
translation_cms-0.1.5 | app/forms/form_data/account.rb |