@codefresh-io/audit
Advanced tools
Comparing version
@@ -19,4 +19,13 @@ /* eslint class-methods-use-this: 0 */ | ||
} | ||
getEntitiesList(accountId) { | ||
return Audit.findAll({ | ||
where: { accountId }, | ||
attributes: ['entity', 'action'], | ||
distinct: true, | ||
raw: true | ||
}); | ||
} | ||
} | ||
module.exports = new AuditDal(); |
@@ -37,4 +37,13 @@ /* eslint class-methods-use-this: 0 */ | ||
async getEntitiesList(accountId) { | ||
const list = await auditDal.getEntitiesList(accountId); | ||
return _.reduce(list, (result, raw) => { | ||
(result[raw.entity] || (result[raw.entity] = [])).push(raw.action); | ||
return result; | ||
}, {}); | ||
} | ||
} | ||
module.exports = new Audit(); |
{ | ||
"name": "@codefresh-io/audit", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Receive and collect audit logs", | ||
@@ -55,3 +55,3 @@ "main": "lib/index.js", | ||
"global": { | ||
"branches": 40, | ||
"branches": 50, | ||
"functions": 50, | ||
@@ -58,0 +58,0 @@ "lines": 50, |
197541
2.51%17
6.25%449
40.31%