mirror of
https://github.com/discourse/discourse-adplugin.git
synced 2025-02-19 09:55:10 +00:00
adplugin, house_ads, house_ad_settings become pluginad, house_creatives, and house_settings.
11 lines
264 B
JavaScript
11 lines
264 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" });
|
|
});
|
|
}
|
|
};
|