mirror of
https://ghfast.top/https://github.com/discourse/discourse-akismet.git
synced 2026-07-17 11:56:39 +08:00
11 lines
356 B
JavaScript
11 lines
356 B
JavaScript
export default {
|
|
name: 'rewrite-plugin-outlets',
|
|
|
|
initialize() {
|
|
// TODO: Once `rewire` is in stable replace this with a regular `import`
|
|
const outletModule = require('discourse/helpers/plugin-outlet');
|
|
if (outletModule && outletModule.rewire) {
|
|
outletModule.rewire('akismet-review', 'site-map-links', 'hamburger-admin');
|
|
}
|
|
}
|
|
}
|