I have a file called _userAccount.get.json living in some/path/any/another/path/_userAccount.get.json
I want this file to be returned as a JSON response when my client accesses http://localhost:3000/some/path/12345/another/path/userAccount but with canned 0.3.7 this doesn't work. Canned logs: request: get /some/path/12345/another/path/userAccount not found
If I move the file to some/path/any/another/path/userAccount/index.get.json and access http://localhost:3000/some/path/12345/another/path/userAccount/ from the client the expected JSON is returned.
So it seems like the any wildcard is working for index.get.json files, but not for _anyFileName.get.json files.
I have a file called
_userAccount.get.jsonliving insome/path/any/another/path/_userAccount.get.jsonI want this file to be returned as a JSON response when my client accesses
http://localhost:3000/some/path/12345/another/path/userAccountbut with canned 0.3.7 this doesn't work. Canned logs:request: get /some/path/12345/another/path/userAccount not foundIf I move the file to
some/path/any/another/path/userAccount/index.get.jsonand accesshttp://localhost:3000/some/path/12345/another/path/userAccount/from the client the expected JSON is returned.So it seems like the
anywildcard is working forindex.get.jsonfiles, but not for_anyFileName.get.jsonfiles.