UNPKG

@conceptho/adonis-service-layer

Version:
68 lines (61 loc) 1.36 kB
'use strict' /* * @conceptho/adonis-service-layer * * (c) Jordão Rosario <jordao.rosario@conceptho.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ const BaseCommand = require('./Base') /** * Make a new lucid model * * @class MakeModel * @constructor */ class MakeService extends BaseCommand { /** * The command signature * * @method signature * * @return {String} */ static get signature () { return ` conceptho:service { name: Name of the Service } { --modelName?=@value: Name of the model for this Service } { -a, --actions: Generate base Actions } { --hasModel: has a Model related to } ` } /** * The command description * * @method description * * @return {String} */ static get description () { return 'Make a new Conceptho Service.' } /** * Handle method executed by ace * * @method handle * * @param {String} options.name * @param {String} options.type * * @return {void} */ async handle ({ name }, { modelName, hasModel, actions }) { await this.invoke(async () => { await this.ensureInProjectRoot() await this.generateBlueprint('service', name, { modelName, hasModel, actions }) }) } } module.exports = MakeService