mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 14:56:22 +08:00
14 lines
361 B
Plaintext
14 lines
361 B
Plaintext
|
import { withPluginApi } from "discourse/lib/plugin-api";
|
||
|
|
||
|
function initialize<%= classified_name %>(api) {
|
||
|
// https://github.com/discourse/discourse/blob/master/app/assets/javascripts/discourse/lib/plugin-api.js.es6
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
name: "<%= dasherized_name %>",
|
||
|
|
||
|
initialize() {
|
||
|
withPluginApi("0.8.31", initialize<%= classified_name %>);
|
||
|
}
|
||
|
};
|