Replies: 2 comments
-
I'm sorry, but at the moment it's not possible. However, it's a good idea and I will try to add this feature as soon as possible. If you want, you can add this to the issue tracker. As a workaround, you can add a pre-matching filter that changes the URL: when the path is '/entity', it changes it to '/service/entity'. |
Beta Was this translation helpful? Give feedback.
0 replies
-
If you try the latest release, it should work! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How to add multiple resource names to one entity like:
Instead of:
[Path('entity')]
TEntityResource = class
i need to publish resource under multiple urls:
[Path('/entity')]
[Path('/service/entity')]
TEntityResource = class
this is something like used in DMVC Framework:
[MVCPath('/v1/cars')]
[MVCPath('/v1/service/cars')]
[MVCPath('/v2/cars')]
TCarsController = class(TMVCController)
Beta Was this translation helpful? Give feedback.
All reactions