mirror of
https://github.com/discourse/discourse.git
synced 2024-12-12 16:03:49 +08:00
13 lines
250 B
Plaintext
13 lines
250 B
Plaintext
|
import { withPluginApi } from "discourse/lib/plugin-api";
|
||
|
|
||
|
function initialize<%= classified_name %>(api) {
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
name: "<%= dasherized_name %>",
|
||
|
|
||
|
initialize() {
|
||
|
withPluginApi("0.8.24", initialize<%= classified_name %>);
|
||
|
}
|
||
|
};
|