mirror of
https://ghfast.top/https://github.com/discourse/discourse-akismet.git
synced 2026-07-16 11:46:29 +08:00
11 lines
228 B
JavaScript
11 lines
228 B
JavaScript
import { withPluginApi } from "discourse/lib/plugin-api";
|
|
|
|
export default {
|
|
name: "add-akismet-state",
|
|
|
|
initialize() {
|
|
withPluginApi("0.8.31", (api) => {
|
|
api.includePostAttributes("akismet_state");
|
|
});
|
|
},
|
|
};
|