2019-07-27 12:21:44 -04:00
|
|
|
import { withPluginApi } from "discourse/lib/plugin-api";
|
|
|
|
|
|
|
|
function initialize<%= classified_name %>(api) {
|
2021-07-19 11:35:47 -04:00
|
|
|
// https://github.com/discourse/discourse/blob/main/app/assets/javascripts/discourse/lib/plugin-api.js.es6
|
2019-07-27 12:21:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "<%= dasherized_name %>",
|
|
|
|
|
|
|
|
initialize() {
|
|
|
|
withPluginApi("0.8.31", initialize<%= classified_name %>);
|
|
|
|
}
|
|
|
|
};
|