balanced/balanced-dashboard

View on GitHub
app/routes/marketplace/customers.js

Summary

Maintainability
A
1 hr
Test Coverage
import AuthRoute from "../auth";

var MarketplaceCustomersRoute = AuthRoute.extend({
    pageTitle: 'Customers',
    model: function() {
        var marketplace = this.modelFor("marketplace");
        return marketplace.getCustomersLoader();
    },
});

export default MarketplaceCustomersRoute;