From a9db42a956fb045131b06ba434a74189c96ad651 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Mar 2016 11:18:09 +0100 Subject: Validations for local profiles --- app/models/account.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'app/models') diff --git a/app/models/account.rb b/app/models/account.rb index 7577d7bd8..b3917e6e8 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -12,6 +12,10 @@ class Account < ActiveRecord::Base has_attached_file :header, styles: { medium: '700x335#' } validates_attachment_content_type :header, content_type: /\Aimage\/.*\Z/ + # Local user profile validations + validates :display_name, length: { maximum: 30 }, if: 'local?' + validates :note, length: { maximum: 124 }, if: 'local?' + # Timelines has_many :stream_entries, inverse_of: :account has_many :statuses, inverse_of: :account -- cgit