repo.or.cz
/
merb_mart.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Create note on discontinued development
[merb_mart.git]
/
app
/
models
/
upload
/
image
/
product_image.rb
blob
65e52e613438801dcb14510925e0a3ce19ac1004
1
class ProductImage < Image
2
3
property :product_id, Integer # foreign-key
4
5
belongs_to :product
6
7
after :resize, :generate_thumbnail
8
9
validates_present :product
10
11
def generate_thumbnail; end
12
end