您最多选择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