質問編集履歴
1
スペルミス
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,9 +12,9 @@
|
|
12
12
|
|
13
13
|
root to: 'memos#index'
|
14
14
|
|
15
|
-
get 'memo
|
15
|
+
get 'memos', to: 'memos#index'
|
16
16
|
|
17
|
-
get 'memo
|
17
|
+
get 'memos/:id', to: 'memos#show'
|
18
18
|
|
19
19
|
end
|
20
20
|
|
@@ -34,9 +34,9 @@
|
|
34
34
|
|
35
35
|
root GET / memos#index
|
36
36
|
|
37
|
-
memo
|
37
|
+
memos GET /memos(.:format) memos#index
|
38
38
|
|
39
|
-
GET /memo
|
39
|
+
GET /memos/:id(.:format) memos#show
|
40
40
|
|
41
41
|
```
|
42
42
|
|
@@ -44,7 +44,7 @@
|
|
44
44
|
|
45
45
|
想定していたshowのルーティングは以下なのですが、
|
46
46
|
|
47
|
-
`memo GET /memo
|
47
|
+
`memo GET /memos/:id(.:format) memos#show`
|
48
48
|
|
49
49
|
|
50
50
|
|