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
@@ -1236,6 +1237,33 @@ Learn more about class-transformer and how to handle more complex object constru
1236
1237
This behaviour is enabled by default.
1237
1238
If you want to disable it simply pass `classTransformer: false` to createExpressServer method. Alternatively you can disable transforming for [individual controllers or routes](#selectively-disable-requestresponse-transforming).
1238
1239
1240
+
## Controller Inheritance
1241
+
Often your application may need to have an option to inherit controller from another to reuse code and void duplication.
1242
+
A good example of the use is the CRUD operations which can be hidden inside `AbstractBaseController` with the possibility to add new and overload methods, the template method pattern.
0 commit comments