Sha256: 19c58d096e8fdad164b5ae1cc519049c71f9dcae974d0d3defc8daba632ae571

Contents?: true

Size: 334 Bytes

Versions: 2

Compression:

Stored size: 334 Bytes

Contents

class TaskFeedback < ActiveRecord::Base
  attr_accessible :date, :notes, :resolution, :resolution_id, :status, :task, :user
  
  belongs_to :task
  belongs_to :status, class_name: "SystemTaskStatus"
  belongs_to :resolution, class_name: "SystemTaskResolution"
  belongs_to :user
  
  validates_presence_of :notes, :resolution 
  
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
guara-0.0.3 app/models/task_feedback.rb
guara-0.0.1.rc app/models/task_feedback.rb