From: Andy Allan Date: Wed, 28 Aug 2024 17:18:26 +0000 (+0100) Subject: Rename Feeds::ChangesetCommentsController to ChangesetComments::FeedsController X-Git-Tag: live~193^2 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/10a4c5cf6e1165a9db6e9b87d0fa19d7f97b51bf?hp=10a4c5cf6e1165a9db6e9b87d0fa19d7f97b51bf Rename Feeds::ChangesetCommentsController to ChangesetComments::FeedsController We usually create nested controllers with the main controller as the module, and the nested controller as the specialization, e.g. Users::DeletionsController or Traces::IconsController. This then leaves the topic of whether the feed resource is plural, and whether we are then showing a singular feed or showing a list (index) of objects. The routes are carefully named so that we have `changesets_comments_feed_path` (the comments feed for all changesets) vs `changeset_comment_feed_path(changeset)` (the comments for a singular changeset). ---