02ec9d436a
to avoid a "//" appearing in the path.
8 lines
201 B
Ruby
8 lines
201 B
Ruby
module TenantingHelper
|
|
def tenanted_action_cable_meta_tag
|
|
tag "meta",
|
|
name: "action-cable-url",
|
|
content: "#{request.script_name}#{ActionCable.server.config.mount_path}"
|
|
end
|
|
end
|