You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ActionDispatch modelling now understands that
match "/foo", to: "foo#bar", via: :all
is equivalent to
match "/foo",
to: "foo#bar",
via: [:get, :post, :put, :patch, :delete]
| app/config/routes.rb:49:5:49:94 | call to post | post | users/:user/notifications/:notification_id/mark_as_read | users/notifications | mark_as_read |
20
+
| app/config/routes.rb:27:3:27:48 | call to match | via | photos/:id | photos | show |
21
+
| app/config/routes.rb:28:3:28:50 | call to match | via | photos/:id | photos | show |
22
+
| app/config/routes.rb:29:3:29:69 | call to match | via | photos/:id | photos | show |
23
+
| app/config/routes.rb:30:3:30:50 | call to match | delete | photos/:id | photos | show |
24
+
| app/config/routes.rb:30:3:30:50 | call to match | get | photos/:id | photos | show |
25
+
| app/config/routes.rb:30:3:30:50 | call to match | patch | photos/:id | photos | show |
26
+
| app/config/routes.rb:30:3:30:50 | call to match | post | photos/:id | photos | show |
27
+
| app/config/routes.rb:30:3:30:50 | call to match | put | photos/:id | photos | show |
28
+
| app/config/routes.rb:33:5:33:43 | call to post | post | upgrade | users | start_upgrade |
29
+
| app/config/routes.rb:37:5:37:31 | call to get | get | current_billing_cycle | billing/enterprise | current_billing_cycle |
30
+
| app/config/routes.rb:40:3:40:40 | call to resource | get | global_config | global_config | show |
31
+
| app/config/routes.rb:43:5:45:7 | call to resources | get | foo/bar | foo/bar | index |
32
+
| app/config/routes.rb:43:5:45:7 | call to resources | get | foo/bar/:id | foo/bar | show |
33
+
| app/config/routes.rb:44:7:44:39 | call to get | get | foo/bar/:bar_id/show_debug | foo/bar | show_debug |
| app/config/routes.rb:50:5:50:94 | call to post | post | users/:user/notifications/:notification_id/mark_as_read | users/notifications | mark_as_read |
31
36
actionDispatchControllerMethods
32
37
| app/config/routes.rb:2:3:8:5 | call to resources | app/controllers/posts_controller.rb:2:3:3:5 | index |
33
38
| app/config/routes.rb:2:3:8:5 | call to resources | app/controllers/posts_controller.rb:5:3:6:5 | show |
@@ -37,7 +42,8 @@ actionDispatchControllerMethods
37
42
| app/config/routes.rb:27:3:27:48 | call to match | app/controllers/photos_controller.rb:2:3:3:5 | show |
38
43
| app/config/routes.rb:28:3:28:50 | call to match | app/controllers/photos_controller.rb:2:3:3:5 | show |
39
44
| app/config/routes.rb:29:3:29:69 | call to match | app/controllers/photos_controller.rb:2:3:3:5 | show |
40
-
| app/config/routes.rb:49:5:49:94 | call to post | app/controllers/users/notifications_controller.rb:3:5:4:7 | mark_as_read |
45
+
| app/config/routes.rb:30:3:30:50 | call to match | app/controllers/photos_controller.rb:2:3:3:5 | show |
46
+
| app/config/routes.rb:50:5:50:94 | call to post | app/controllers/users/notifications_controller.rb:3:5:4:7 | mark_as_read |
0 commit comments