Allows creating ads within Discourse admin at Plugins > House Ads. Write the ads in html and style them with CSS in themes.
11 lines
249 B
JavaScript
11 lines
249 B
JavaScript
export default {
|
|
resource: "admin.adminPlugins",
|
|
path: "/plugins",
|
|
map() {
|
|
this.route("houseAds", { path: "/house-ads" }, function() {
|
|
this.route("index", { path: "/" });
|
|
this.route("show", { path: "/:ad_id" });
|
|
});
|
|
}
|
|
};
|