forked from OpenNeo/impress
9 lines
125 B
Ruby
9 lines
125 B
Ruby
|
class OutfitImageUpdate
|
||
|
@queue = :outfit_image_updates
|
||
|
|
||
|
def self.perform(id)
|
||
|
Outfit.find(id).write_image!
|
||
|
end
|
||
|
end
|
||
|
|