debian-mirror-gitlab/config/initializers/actioncable.rb
2020-04-08 14:13:33 +05:30

9 lines
323 B
Ruby

# frozen_string_literal: true
Rails.application.configure do
# Prevents the default engine from being mounted because
# we're running ActionCable as a standalone server
config.action_cable.mount_path = nil
config.action_cable.url = Gitlab::Utils.append_path(Gitlab.config.gitlab.relative_url_root, '/-/cable')
end