generator-jhipster-entity-audit
Version:
JHipster module to enable entity audit and audit log page
16 lines (13 loc) • 487 B
JavaScript
import BaseApplicationGenerator from 'generator-jhipster/generators/base-application';
export default class extends BaseApplicationGenerator {
constructor(args, opts, features) {
super(args, opts, { ...features, queueCommandTasks: true, sbsBlueprint: true });
}
get [BaseApplicationGenerator.COMPOSING]() {
return this.asComposingTaskGroup({
async composingTask() {
await this.composeWithJHipster('jhipster-entity-audit:java-audit');
},
});
}
}