mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
16 lines
258 B
Ruby
16 lines
258 B
Ruby
# frozen_string_literal: true
|
|
|
|
module CablecarResponses
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
include CableReady::Broadcaster
|
|
end
|
|
|
|
private
|
|
|
|
def partial(path, options = {})
|
|
{ html: render_to_string(partial: path, **options) }
|
|
end
|
|
end
|