summaryrefslogtreecommitdiff
path: root/app/models/thumbnail_version.rb
blob: 4f829fdfbc26891f60365e175d5d108c298da0c6 (plain)
1
2
3
4
5
6
7
8
9
class ThumbnailVersion < Version
  def initialize(photo)
    super(photo, :thumb, "thumb_")
  end

  def adjust(image)
    image.resize_to_fill(width: 260, height: 260)
  end
end