summaryrefslogtreecommitdiff
path: root/config/initializers/actioncable.rb
blob: ed96f965150a5969bc5f364af1b8a5d188bb2091 (plain)
1
2
3
4
5
6
7
8
# 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