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

13 行
389 B

  1. class Document < ApplicationRecord
  2. belongs_to :user
  3. has_and_belongs_to_many :tags
  4. has_attached_file :doc,
  5. {
  6. adapter_options: { hash_digest: Digest::SHA256 },
  7. url: "/system/:class/:attachment/:id_partition/:style/:hash.:extension",
  8. hash_secret: Rails.application.secrets.secret_key_base
  9. }
  10. validates_attachment_content_type :doc, content_type: 'application/pdf'
  11. end