Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

13 wiersze
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