Class: CkeditorAttachmentFileUploader

Inherits:
CarrierWave::Uploader::Base
  • Object
show all
Includes:
Ckeditor::Backend::CarrierWave
Defined in:
app/uploaders/ckeditor_attachment_file_uploader.rb

Instance Method Summary collapse

Instance Method Details

#extension_white_listObject

Add a white list of extensions which are allowed to be uploaded. For images you might use something like this:



33
34
35
# File 'app/uploaders/ckeditor_attachment_file_uploader.rb', line 33

def extension_white_list
  Ckeditor.attachment_file_types
end

#store_dirObject

Override the directory where uploaded files will be stored. This is a sensible default for uploaders that are meant to be mounted:



15
16
17
# File 'app/uploaders/ckeditor_attachment_file_uploader.rb', line 15

def store_dir
  "uploads/ckeditor/attachments/#{model.id}"
end