@webda/shell
Version:
Deploy a Webda app or configure it
20 lines • 470 B
JavaScript
import { CoreModel } from "@webda/core";
/**
* @WebdaModel
*/
export default class Deployment extends CoreModel {
constructor() {
super(...arguments);
this.parameters = {};
this.resources = {};
this.services = {};
this.units = [];
this._type = "deployment";
}
async canAct(_ctx, _action) {
// Allow everything
return true;
}
}
export { Deployment };
//# sourceMappingURL=deployment.js.map