Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class Upload < ApplicationRecord
  2. has_one_attached :file
  3.  
  4. after_create :build_url
  5.  
  6. private
  7.  
  8. def build_url
  9. update_column(:url, Rails.application.routes.url_helpers.rails_blob_path(file, only_path: true)) if file.attached?
  10. end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement