UNPKG

bricks-cli

Version:

Command line tool for developing ambitious ember.js apps

14 lines (11 loc) 360 B
var Blueprint = require('../../lib/models/blueprint'); module.exports = Blueprint.extend({ locals: function(options) { var type = options.entity.options.type; return { baseClass: type === 'array' ? 'ArrayController' : type === 'object' ? 'ObjectController' : 'Controller' }; } });