product.rb 125 B

12345
  1. class Product < ApplicationRecord
  2. has_one_attached :image
  3. after_commit -> { broadcast_refresh_later_to "products" }
  4. end