質問編集履歴

1

rails routes添付

2019/12/17 05:37

投稿

sn.jr
sn.jr

スコア53

test CHANGED
File without changes
test CHANGED
@@ -101,3 +101,87 @@
101
101
  end
102
102
 
103
103
  ```
104
+
105
+ rails routes
106
+
107
+ ```
108
+
109
+ Prefix Verb URI Pattern Controller#Action
110
+
111
+ entries_index GET /entries/index(.:format) entries#index
112
+
113
+ entries_show GET /entries/show(.:format) entries#show
114
+
115
+ entries_new GET /entries/new(.:format) entries#new
116
+
117
+ entries_edit GET /entries/edit(.:format) entries#edit
118
+
119
+ passwords_edit GET /passwords/edit(.:format) passwords#edit
120
+
121
+ accounts_show GET /accounts/show(.:format) accounts#show
122
+
123
+ accounts_edit GET /accounts/edit(.:format) accounts#edit
124
+
125
+ top_index GET /top/index(.:format) top#index
126
+
127
+ search_members GET /members/search(.:format) members#search
128
+
129
+ member_entries GET /members/:member_id/entries(.:format) entries#index
130
+
131
+ members GET /members(.:format) members#index
132
+
133
+ POST /members(.:format) members#create
134
+
135
+ new_member GET /members/new(.:format) members#new
136
+
137
+ edit_member GET /members/:id/edit(.:format) members#edit
138
+
139
+ member GET /members/:id(.:format) members#show
140
+
141
+ PATCH /members/:id(.:format) members#update
142
+
143
+ PUT /members/:id(.:format) members#update
144
+
145
+ DELETE /members/:id(.:format) members#destroy
146
+
147
+ root GET / top#index
148
+
149
+ about GET /about(.:format) top#about
150
+
151
+ session DELETE /session(.:format) sessions#destroy
152
+
153
+ POST /session(.:format) sessions#create
154
+
155
+ edit_account GET /account/edit(.:format) accounts#edit
156
+
157
+ account GET /account(.:format) accounts#show
158
+
159
+ PATCH /account(.:format) accounts#update
160
+
161
+ PUT /account(.:format) accounts#update
162
+
163
+ edit_password GET /password/edit(.:format) passwords#edit
164
+
165
+ password GET /password(.:format) passwords#show
166
+
167
+ PATCH /password(.:format) passwords#update
168
+
169
+ PUT /password(.:format) passwords#update
170
+
171
+ articles GET /articles(.:format) articles#index
172
+
173
+ POST /articles(.:format) articles#create
174
+
175
+ new_article GET /articles/new(.:format) articles#new
176
+
177
+ edit_article GET /articles/:id/edit(.:format) articles#edit
178
+
179
+ article GET /articles/:id(.:format) articles#show
180
+
181
+ PATCH /articles/:id(.:format) articles#update
182
+
183
+ PUT /articles/:id(.:format) articles#update
184
+
185
+ DELETE /articles/:id(.:format) articles#destroy
186
+
187
+ ```