Sha256: 59118c8af9fc16fb6462218427b9946c28facec87c870686350ab63f49e1681d

Contents?: true

Size: 631 Bytes

Versions: 5

Compression:

Stored size: 631 Bytes

Contents

module FinePrint
  class Signature < ActiveRecord::Base
    belongs_to :contract, :inverse_of => :signatures
    belongs_to :user, :polymorphic => true

    before_save :contract_published

    validates_presence_of :contract, :user_type, :user_id
    validates_uniqueness_of :contract_id, :scope => [:user_type, :user_id]

    default_scope order(:contract_id, :user_type, :user_id)

    protected

    ##############
    # Validation #
    ##############

    def contract_published
      return if contract.is_published?
      errors.add(:contract, 'needs to be published before it can be signed')
      false
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fine_print-1.3.0 app/models/fine_print/signature.rb~
fine_print-1.2.0 app/models/fine_print/signature.rb~
fine_print-1.1.1 app/models/fine_print/signature.rb~
fine_print-1.1.0 app/models/fine_print/signature.rb~
fine_print-1.0.0 app/models/fine_print/signature.rb~