Skip to content

Are blank routes preferred or routes with / #336

@arianf

Description

@arianf

When trying to add a route at the root of a resource, what is preferred:

resources :legal, only: %i[index] do
  collection do
    post '', action: :legal_submit

    # OR

    post '/', action: :legal_submit
  end
end

Both go to the same route: POST /legal.

It would be nice if rails supported omitting the first param like post action: :legal_submit

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions