Eth3rnit3
9/4/2019 - 8:21 PM

upload.rb

class Upload < ApplicationRecord
  has_one_attached :file

  after_create :build_url

  private

  def build_url
    update_column(:url, Rails.application.routes.url_helpers.rails_blob_path(file, only_path: true)) if file.attached?
  end
end