mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
13 lines
359 B
Text
13 lines
359 B
Text
import { withPluginApi } from "discourse/lib/plugin-api";
|
|
|
|
function initialize<%= classified_name %>(api) {
|
|
// https://github.com/discourse/discourse/blob/main/app/assets/javascripts/discourse/lib/plugin-api.js.es6
|
|
}
|
|
|
|
export default {
|
|
name: "<%= dasherized_name %>",
|
|
|
|
initialize() {
|
|
withPluginApi("0.8.31", initialize<%= classified_name %>);
|
|
}
|
|
};
|