Files
discourse-adplugin/assets/javascripts/discourse/connectors/after-topic-list-item/discourse-adplugin.js
T
David Taylor 3828578d5d DEV: Restructure file locations
- Colocate components / connectors
- Move admin UI files to `admin/assets` so they are only served to admins
2023-11-07 18:37:39 +00:00

16 lines
346 B
JavaScript

import { slotContenders } from "discourse/plugins/discourse-adplugin/discourse/components/ad-slot";
export default {
shouldRender(args, component) {
return (
args.index &&
slotContenders(
component.site,
component.siteSettings,
"topic-list-between",
args.index
).length > 0
);
},
};