mirror of
https://github.com/discourse/discourse-adplugin.git
synced 2025-02-08 04:28:10 +00:00
11 lines
266 B
JavaScript
11 lines
266 B
JavaScript
export default {
|
|
resource: "admin.adminPlugins",
|
|
path: "/plugins",
|
|
map() {
|
|
this.route("houseAds", { path: "/pluginad/house_creatives" }, function () {
|
|
this.route("index", { path: "/" });
|
|
this.route("show", { path: "/:ad_id" });
|
|
});
|
|
},
|
|
};
|