base controller error actions

This commit is contained in:
Yuri Kuznetsov
2025-01-24 10:56:46 +02:00
parent 4750313d37
commit 03cd76fff5
+10
View File
@@ -216,6 +216,16 @@ class BaseController extends Controller {
this.entire(view);
}
// noinspection JSUnusedGlobalSymbols
actionError404() {
this.error404();
}
// noinspection JSUnusedGlobalSymbols
actionError403() {
this.error403();
}
}
export default BaseController;