summaryrefslogtreecommitdiff
path: root/app/models/fax_thumbnail.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/fax_thumbnail.rb')
-rw-r--r--app/models/fax_thumbnail.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/models/fax_thumbnail.rb b/app/models/fax_thumbnail.rb
new file mode 100644
index 0000000..a29c9ad
--- /dev/null
+++ b/app/models/fax_thumbnail.rb
@@ -0,0 +1,8 @@
+class FaxThumbnail < ActiveRecord::Base
+ mount_uploader :thumbnail, ThumbnailUploader
+ validates_presence_of :thumbnail
+
+ belongs_to :fax_document
+
+ acts_as_list :scope => :fax_document
+end