Not sure if they were supposed to be removed. For now I'll assume they were commented accidentally.
15 lines
538 B
Ruby
15 lines
538 B
Ruby
class Ckeditor::Picture < Ckeditor::Asset
|
|
has_attached_file :data,
|
|
url: '/ckeditor_assets/pictures/:id/:style_:basename.:extension',
|
|
path: ':rails_root/public/ckeditor_assets/pictures/:id/:style_:basename.:extension',
|
|
styles: { content: '800>', thumb: '118x100#' }
|
|
|
|
validates_attachment_presence :data
|
|
validates_attachment_size :data, less_than: 2.megabytes
|
|
validates_attachment_content_type :data, content_type: /\Aimage/
|
|
|
|
def url_content
|
|
url(:content)
|
|
end
|
|
end
|