FIX: allow uploading of category logo and background

This commit is contained in:
Arpit Jalan 2017-05-11 12:46:28 +05:30
parent 53257a87ff
commit 8c337ecf82

View File

@ -22,7 +22,7 @@ class Upload < ActiveRecord::Base
validates_with ::Validators::UploadValidator
CROPPED_TYPES ||= %w{avatar card_background custom_emoji profile_background}.each(&:freeze)
UPLOAD_TYPES ||= CROPPED_TYPES + %w{composer}.each(&:freeze)
UPLOAD_TYPES ||= CROPPED_TYPES + %w{composer category_logo category_background}.each(&:freeze)
def thumbnail(width = self.width, height = self.height)
optimized_images.find_by(width: width, height: height)