summaryrefslogtreecommitdiff
path: root/app/models/call_forward_case.rb
blob: a0b872b06b2c607951edc728f980fb2355ca4868 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class CallForwardCase < ActiveRecord::Base
  
  attr_accessible :value
  
  has_many :call_forwards
  
  validates_presence_of :value
  
  def to_s
    self.value
  end
  
end