mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
20 lines
466 B
JavaScript
20 lines
466 B
JavaScript
|
export default {
|
||
|
"message_types": {
|
||
|
"welcome": "welcome",
|
||
|
"disconnect": "disconnect",
|
||
|
"ping": "ping",
|
||
|
"confirmation": "confirm_subscription",
|
||
|
"rejection": "reject_subscription"
|
||
|
},
|
||
|
"disconnect_reasons": {
|
||
|
"unauthorized": "unauthorized",
|
||
|
"invalid_request": "invalid_request",
|
||
|
"server_restart": "server_restart"
|
||
|
},
|
||
|
"default_mount_path": "/cable",
|
||
|
"protocols": [
|
||
|
"actioncable-v1-json",
|
||
|
"actioncable-unsupported"
|
||
|
]
|
||
|
}
|