diff --git a/app/models/user.rb b/app/models/user.rb index 78c779ea..b89dddcd 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -29,6 +29,7 @@ class User < ActiveRecord::Base validates :screen_name, presence: true, format: { with: SCREEN_NAME_REGEX }, uniqueness: { case_sensitive: false } validates :display_name, length: { maximum: 50 } + validates :bio, length: { maximum: 200 } # validates :website, format: { with: WEBSITE_REGEX }