summaryrefslogtreecommitdiff
path: root/app/models/fax_thumbnail.rb
blob: a29c9ada200d69f0a4c8e32c6c8b673a94c91cf3 (plain)
1
2
3
4
5
6
7
8
class FaxThumbnail < ActiveRecord::Base
  mount_uploader :thumbnail, ThumbnailUploader
  validates_presence_of :thumbnail
  
  belongs_to :fax_document
  
  acts_as_list :scope => :fax_document
end