You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using HTTP headers to add versioning capabilities in my API. I am accessing my API endpoint as such... http://localhost:3000/api/posts
However, for the links in relationship like comments. It shows something like this... http://localhost:3000/api/v1/posts/1/relationships/comments
What I want to do is to have this... http://localhost:3000/api/posts/1/relationships/comments
I read the suggestion from #257 but I could not figure out where to put the monkey patch file (apologies for that.)
Thank you!
PS: This is connected to these issues: #591#257#159