Skip to content
Advertisement

symfony + api platform – creating alias to a route

We have a rather standard symfony + api-platform project.

A while ago, when a route was created it had a typo in it. I noticed that and want to fix it for the future. The problem is that some of our clients may have implemented it already like that. I want it to still work for a while, without being exposed in documentation. I can take care of the documentation part by overriding the generator service so that’s not a problem.

The problem is that I find no way to create an alias in api-platform. Any idea how I may go about that? The item operations definition looks like this:

JavaScript

Advertisement

Answer

Just copy “get” operation and name it different:

JavaScript

So, then you can easily remove old get operation and rename get_without_typo to get.

To remove some endpoints from the documentation – I have created my own option – remove_from_docs. I can share it with you.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement