diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2016-06-10 15:29:51 -0700 |
---|---|---|
committer | Prathamesh Sonpatki <csonpatki@gmail.com> | 2016-06-10 15:29:51 -0700 |
commit | f9a29680682fe8c84ea634157927b9826cbf669f (patch) | |
tree | 0de1566e5c6bd3e05c11cac991b06f2f2395219a /guides | |
parent | 2592e22ab7a5025a473139048674e687423bde46 (diff) | |
download | rails-f9a29680682fe8c84ea634157927b9826cbf669f.tar.gz rails-f9a29680682fe8c84ea634157927b9826cbf669f.tar.bz2 rails-f9a29680682fe8c84ea634157927b9826cbf669f.zip |
Action Cable routes are enabled by default now [ci skip]
- Followup of https://github.com/rails/rails/commit/8b69f1eeba753c38364fb88136b2503480f2de1d.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/getting_started.md | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 65fdd7ca0d..e0832a32a6 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -299,9 +299,6 @@ Rails.application.routes.draw do get 'welcome/index' # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html - - # Serve websocket cable requests in-process - # mount ActionCable.server => '/cable' end ``` @@ -318,8 +315,6 @@ Rails.application.routes.draw do # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html - # Serve websocket cable requests in-process - # mount ActionCable.server => '/cable' root 'welcome#index' end ``` |