Skip to content

Commit d1a93e2

Browse files
authored
Add missing 'versioning' url
1 parent 85da643 commit d1a93e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/recipes/router-module.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
In an HTTP application (for example, REST API), the route path for a handler is determined by concatenating the (optional) prefix declared for the controller (inside the `@Controller` decorator),
66
and any path specified in the method's decorator (e.g, `@Get('users')`). You can learn more about that in [this section](/controllers#routing). Additionally,
7-
you can define a [global prefix](/faq/global-prefix) for all routes registered in your application, or enable [versioning]().
7+
you can define a [global prefix](/faq/global-prefix) for all routes registered in your application, or enable [versioning](/techniques/versioning).
88

99
Also, there are edge-cases when defining a prefix at a module-level (and so for all controllers registered inside that module) may come in handy.
1010
For example, imagine a REST application that exposes several different endpoints being used by a specific portion of your application called "Dashboard".

0 commit comments

Comments
 (0)