You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 regels
365 B

  1. class PagePreview < ApplicationRecord
  2. belongs_to :content
  3. has_attached_file :preview,
  4. {
  5. adapter_options: { hash_digest: Digest::SHA256 },
  6. url: "/system/:class/:attachment/:id_partition/:style/:hash.:extension",
  7. hash_secret: Rails.application.secrets.secret_key_base
  8. }
  9. validates_attachment_content_type :preview, content_type: 'image/png'
  10. end