mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-29 18:46:23 -05:00
14 lines
248 B
Ruby
14 lines
248 B
Ruby
module Jobs
|
|
|
|
class ResizeEmoji < Jobs::Base
|
|
|
|
def execute(args)
|
|
path = args[:path]
|
|
return unless File.exists?(path)
|
|
|
|
# make sure emoji aren't too big
|
|
OptimizedImage.downsize(path, path, 60, 60, true)
|
|
end
|
|
end
|
|
|
|
end
|