discourse/app/assets/javascripts/discourse-plugins/colocated-template-compiler.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
420 B
JavaScript
Raw Normal View History

const ColocatedTemplateProcessor = require("ember-cli-htmlbars/lib/colocated-broccoli-plugin");
module.exports = class DiscoursePluginColocatedTemplateProcessor extends (
ColocatedTemplateProcessor
) {
constructor(tree, discoursePluginName) {
super(tree);
this.discoursePluginName = discoursePluginName;
}
detectRootName() {
return `discourse/plugins/${this.discoursePluginName}/discourse`;
}
};