Skip to content

Commit

Permalink
get all controllers method
Browse files Browse the repository at this point in the history
  • Loading branch information
LborV committed Nov 21, 2022
1 parent 93a5bf5 commit 834a61b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions app/public/build/kernel/Application.js
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,10 @@ class Application {
return this.controllers[name];
}

getControllers() {
return this.controllers;
}

/**
* Given a route, this function will change the current page to the page specified by the route
* @param route - The route to change to.
Expand Down
2 changes: 1 addition & 1 deletion app/public/build/kernel/Application.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions app/public/kernel/Application.js
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,10 @@ class Application {
return this.controllers[name];
}

getControllers() {
return this.controllers;
}

/**
* Given a route, this function will change the current page to the page specified by the route
* @param route - The route to change to.
Expand Down

0 comments on commit 834a61b

Please sign in to comment.