mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 17:23:44 +08:00
8 lines
160 B
Ruby
8 lines
160 B
Ruby
|
class OptimizedImage < ActiveRecord::Base
|
||
|
belongs_to :upload
|
||
|
|
||
|
def filename
|
||
|
"#{sha[0..2]}/#{sha[3..5]}/#{sha[6..16]}_#{width}x#{height}#{ext}"
|
||
|
end
|
||
|
end
|