You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
772 B
17 lines
772 B
3 years ago
|
// Load all the controllers within this directory and all subdirectories.
|
||
|
// Controller files must be named *_controller.js.
|
||
|
|
||
|
import { application } from "./application"
|
||
|
|
||
|
import AccessibleAutocompleteController from "./accessible_autocomplete_controller.js"
|
||
|
application.register("accessible-autocomplete", AccessibleAutocompleteController)
|
||
|
|
||
|
import ConditionalQuestionController from "./conditional_question_controller.js"
|
||
|
application.register("conditional-question", ConditionalQuestionController)
|
||
|
|
||
|
import GovukfrontendController from "./govukfrontend_controller.js"
|
||
|
application.register("govukfrontend", GovukfrontendController)
|
||
|
|
||
|
import NumericQuestionController from "./numeric_question_controller.js"
|
||
|
application.register("numeric-question", NumericQuestionController)
|