When I generate documentation, this line comes out as "path": "/foo.{format}". foo is presumably derived from the name of the controller that serves this route.
Is there any way to change foo to a value that I control?
In particular, foo is inconsistent with the paths contained in the resource-specific documentation. So, in other words, I have:
When I generate documentation, this line comes out as
"path": "/foo.{format}"
.foo
is presumably derived from the name of the controller that serves this route.Is there any way to change
foo
to a value that I control?In particular,
foo
is inconsistent with the paths contained in the resource-specific documentation. So, in other words, I have:And I would like to be consistently showing
bar
instead offoo
.Is there a way to do this without renaming my controller?