Find the bug, Rails edition
Blog
Written with a loving hand by kitt some time around 13:45 on 20 February 2024
I have this code in a model in a Rails project.
validates :name, presence: true, on: :create validates :email, presence: true, format: { with: URI::MailTo::EMAIL_REGEXP }, on: create
Let's put it in an Author model:
Add new comment