選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

12 行
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