When trying to add a route at the root of a resource, what is preferred: ```ruby 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`