質問編集履歴
2
該当ソースコードの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -288,7 +288,7 @@
|
|
288
288
|
|
289
289
|
```
|
290
290
|
|
291
|
-
rails routesの結果
|
291
|
+
#####rails routesの結果
|
292
292
|
|
293
293
|
```
|
294
294
|
|
1
該当ソースコードの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -286,7 +286,73 @@
|
|
286
286
|
|
287
287
|
end
|
288
288
|
|
289
|
-
|
289
|
+
```
|
290
|
+
|
291
|
+
rails routesの結果
|
292
|
+
|
293
|
+
```
|
294
|
+
|
295
|
+
mypage GET /mypage(.:format) users#me
|
296
|
+
|
297
|
+
|
298
|
+
|
299
|
+
login POST /login(.:format) sessions#create
|
300
|
+
|
301
|
+
|
302
|
+
|
303
|
+
logout DELETE /logout(.:format) sessions#destroy
|
304
|
+
|
305
|
+
|
306
|
+
|
307
|
+
root GET / home#index
|
308
|
+
|
309
|
+
|
310
|
+
|
311
|
+
users POST /users(.:format) users#create
|
312
|
+
|
313
|
+
|
314
|
+
|
315
|
+
new_user GET /users/new(.:format) users#new
|
316
|
+
|
317
|
+
|
318
|
+
|
319
|
+
boards GET /boards(.:format) boards#index
|
320
|
+
|
321
|
+
|
322
|
+
|
323
|
+
POST /boards(.:format) boards#create
|
324
|
+
|
325
|
+
|
326
|
+
|
327
|
+
new_board GET /boards/new(.:format) boards#new
|
328
|
+
|
329
|
+
|
330
|
+
|
331
|
+
edit_board GET /boards/:id/edit(.:format) boards#edit
|
332
|
+
|
333
|
+
|
334
|
+
|
335
|
+
board GET /boards/:id(.:format) boards#show
|
336
|
+
|
337
|
+
|
338
|
+
|
339
|
+
PATCH /boards/:id(.:format) boards#update
|
340
|
+
|
341
|
+
|
342
|
+
|
343
|
+
PUT /boards/:id(.:format) boards#update
|
344
|
+
|
345
|
+
|
346
|
+
|
347
|
+
DELETE /boards/:id(.:format) boards#destroy
|
348
|
+
|
349
|
+
|
350
|
+
|
351
|
+
comments POST /comments(.:format) comments#create
|
352
|
+
|
353
|
+
|
354
|
+
|
355
|
+
comment DELETE /comments/:id(.:format) comments#destroy
|
290
356
|
|
291
357
|
```
|
292
358
|
|