2019-04-18 17:52:59 -04:00
|
|
|
export default {
|
|
|
|
resource: "admin.adminPlugins",
|
|
|
|
path: "/plugins",
|
|
|
|
map() {
|
2019-10-08 17:41:13 -04:00
|
|
|
this.route("houseAds", { path: "/pluginad/house_creatives" }, function() {
|
2019-04-18 17:52:59 -04:00
|
|
|
this.route("index", { path: "/" });
|
|
|
|
this.route("show", { path: "/:ad_id" });
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|