Files

11 lines
258 B
JavaScript
Raw Permalink Normal View History

2019-04-18 17:52:59 -04:00
export default {
resource: "admin.adminPlugins",
path: "/plugins",
map() {
this.route("houseAds", { path: "/adplugin/house_ads" }, function() {
2019-04-18 17:52:59 -04:00
this.route("index", { path: "/" });
this.route("show", { path: "/:ad_id" });
});
}
};