mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:26:29 +08:00
15 lines
332 B
JavaScript
15 lines
332 B
JavaScript
import { registerHelpers } from "discourse-common/lib/helpers";
|
|
|
|
export default {
|
|
name: "load-helpers",
|
|
|
|
initialize(application) {
|
|
Object.keys(requirejs.entries).forEach((entry) => {
|
|
if (/\/helpers\//.test(entry)) {
|
|
requirejs(entry, null, null, true);
|
|
}
|
|
});
|
|
registerHelpers(application);
|
|
},
|
|
};
|