diff --git a/client/src/controllers/base.js b/client/src/controllers/base.js index a95ad44794..cb05c2b7d2 100644 --- a/client/src/controllers/base.js +++ b/client/src/controllers/base.js @@ -216,6 +216,16 @@ class BaseController extends Controller { this.entire(view); } + + // noinspection JSUnusedGlobalSymbols + actionError404() { + this.error404(); + } + + // noinspection JSUnusedGlobalSymbols + actionError403() { + this.error403(); + } } export default BaseController;