back to

Ruby on Rails To-do List

ARCHIVED

Archived: This project has been archived. Cards can no longer be completed.

Adding validations to Todo Items

Stefy
Stefy completed this card.
>todo_item.rb

class TodoItem
  validates :content, presence: true, 
                      length: { minimum: 3 }
end