Class: C80Catoffers::Ophoto

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/c80_catoffers/ophoto.rb

Instance Method Summary collapse

Instance Method Details

#image_thumb(thumb_size) ⇒ Object

выдать картинку указанного размера



8
9
10
11
12
13
# File 'app/models/c80_catoffers/ophoto.rb', line 8

def image_thumb(thumb_size)
  res = ''
  if image.present?
    res = image.send("#{thumb_size}")
  end
end