Sha256: 90b9a96fb078f67012675480401b678d0621d832fe23932aa742ecf952931970
Contents?: true
Size: 436 Bytes
Versions: 46
Compression:
Stored size: 436 Bytes
Contents
# frozen_string_literal: true module Spotlight ## # Page, browse category, and exhibit featured image thumbnails class FeaturedImageUploader < CarrierWave::Uploader::Base storage Spotlight::Engine.config.uploader_storage def extension_allowlist Spotlight::Engine.config.allowed_upload_extensions end def store_dir "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}" end end end
Version data entries
46 entries across 46 versions & 1 rubygems