8 lines
169 B
Ruby
8 lines
169 B
Ruby
class Picture < ApplicationRecord
|
|
include Leafable
|
|
|
|
has_one_attached :image do |attachable|
|
|
attachable.variant :large, resize_to_limit: [ 1500, 1500 ]
|
|
end
|
|
end
|