Files
fizzy/app/models/collection/broadcastable.rb
T
David Heinemeier Hansson a579e67057 We are not using the parameter
2025-04-12 20:08:42 +02:00

9 lines
166 B
Ruby

module Collection::Broadcastable
extend ActiveSupport::Concern
included do
broadcasts_refreshes
broadcasts_refreshes_to ->(_) { :collections }
end
end