質問編集履歴
1
rails routes添付
title
CHANGED
File without changes
|
body
CHANGED
@@ -49,4 +49,46 @@
|
|
49
49
|
end
|
50
50
|
end
|
51
51
|
end
|
52
|
+
```
|
53
|
+
rails routes
|
54
|
+
```
|
55
|
+
Prefix Verb URI Pattern Controller#Action
|
56
|
+
entries_index GET /entries/index(.:format) entries#index
|
57
|
+
entries_show GET /entries/show(.:format) entries#show
|
58
|
+
entries_new GET /entries/new(.:format) entries#new
|
59
|
+
entries_edit GET /entries/edit(.:format) entries#edit
|
60
|
+
passwords_edit GET /passwords/edit(.:format) passwords#edit
|
61
|
+
accounts_show GET /accounts/show(.:format) accounts#show
|
62
|
+
accounts_edit GET /accounts/edit(.:format) accounts#edit
|
63
|
+
top_index GET /top/index(.:format) top#index
|
64
|
+
search_members GET /members/search(.:format) members#search
|
65
|
+
member_entries GET /members/:member_id/entries(.:format) entries#index
|
66
|
+
members GET /members(.:format) members#index
|
67
|
+
POST /members(.:format) members#create
|
68
|
+
new_member GET /members/new(.:format) members#new
|
69
|
+
edit_member GET /members/:id/edit(.:format) members#edit
|
70
|
+
member GET /members/:id(.:format) members#show
|
71
|
+
PATCH /members/:id(.:format) members#update
|
72
|
+
PUT /members/:id(.:format) members#update
|
73
|
+
DELETE /members/:id(.:format) members#destroy
|
74
|
+
root GET / top#index
|
75
|
+
about GET /about(.:format) top#about
|
76
|
+
session DELETE /session(.:format) sessions#destroy
|
77
|
+
POST /session(.:format) sessions#create
|
78
|
+
edit_account GET /account/edit(.:format) accounts#edit
|
79
|
+
account GET /account(.:format) accounts#show
|
80
|
+
PATCH /account(.:format) accounts#update
|
81
|
+
PUT /account(.:format) accounts#update
|
82
|
+
edit_password GET /password/edit(.:format) passwords#edit
|
83
|
+
password GET /password(.:format) passwords#show
|
84
|
+
PATCH /password(.:format) passwords#update
|
85
|
+
PUT /password(.:format) passwords#update
|
86
|
+
articles GET /articles(.:format) articles#index
|
87
|
+
POST /articles(.:format) articles#create
|
88
|
+
new_article GET /articles/new(.:format) articles#new
|
89
|
+
edit_article GET /articles/:id/edit(.:format) articles#edit
|
90
|
+
article GET /articles/:id(.:format) articles#show
|
91
|
+
PATCH /articles/:id(.:format) articles#update
|
92
|
+
PUT /articles/:id(.:format) articles#update
|
93
|
+
DELETE /articles/:id(.:format) articles#destroy
|
52
94
|
```
|