I'm trying to restrict a path in my routes file to a specific format.
i want this to work:
app.com/party_favors/list.json
not this
app.com/party_favors/list
or this
app.com/party_favors/list.html
or this
app.com/party_favors/list.asdasdasda
is there a simple way to only allow a certain format in a match entry in the routes file?
Thanks!