devworkstecnology/webadmin

View on GitHub
app/models/ckeditor/attachment_file.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Ckeditor::AttachmentFile < Ckeditor::Asset
  mount_uploader :data, CkeditorAttachmentFileUploader, :mount_on => :data_file_name

  def url_thumb
    @url_thumb ||= Ckeditor::Utils.filethumb(filename)
  end
end