adds proposal new and create

This commit is contained in:
rgarcia
2015-09-12 11:38:22 +02:00
parent 104900d343
commit 3f7338a6ae
10 changed files with 206 additions and 1 deletions

View File

@@ -5,12 +5,15 @@ class Proposal < ActiveRecord::Base
has_many :comments, as: :commentable
has_many :flags, as: :flaggable
acts_as_taggable
validates :title, presence: true
validates :question, presence: true
validates :description, presence: true
validates :author, presence: true
validates :question, presence: true
validate :validate_title_length
validate :validate_question_length
validate :validate_description_length
validates :terms_of_service, acceptance: { allow_nil: false }, on: :create
@@ -22,6 +25,10 @@ class Proposal < ActiveRecord::Base
@@title_max_length ||= self.columns.find { |c| c.name == 'title' }.limit || 80
end
def self.question_max_length
140
end
def self.description_max_length
6000
end
@@ -54,4 +61,12 @@ class Proposal < ActiveRecord::Base
validator.validate(self)
end
def validate_question_length
validator = ActiveModel::Validations::LengthValidator.new(
attributes: :title,
minimum: 10,
maximum: Proposal.question_max_length)
validator.validate(self)
end
end