diff options
author | Jonathan <greenbigfrog@gmail.com> | 2016-08-17 15:28:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-17 15:28:54 +0200 |
commit | ce17ac27736efb3c5b9c9532f0d4388f3164dad8 (patch) | |
tree | 160dcaf59a153c814f8ab624659ee3f9d530dc07 /guides/source | |
parent | 92de2ba8bc24d654d1c5966e06b624bd7eac2779 (diff) | |
download | rails-ce17ac27736efb3c5b9c9532f0d4388f3164dad8.tar.gz rails-ce17ac27736efb3c5b9c9532f0d4388f3164dad8.tar.bz2 rails-ce17ac27736efb3c5b9c9532f0d4388f3164dad8.zip |
Fix #26187
As "discussed" in #26187 I added the route that magically disappeared again.
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/getting_started.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index ef469fccc3..d56b817bad 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -353,6 +353,7 @@ resource. You need to add the _article resource_ to the ```ruby Rails.application.routes.draw do + get 'welcome/index' resources :articles |