diff --git a/packages/api/src/controllers/storage.js b/packages/api/src/controllers/storage.js index f7066eb22..496ec34c7 100644 --- a/packages/api/src/controllers/storage.js +++ b/packages/api/src/controllers/storage.js @@ -31,6 +31,11 @@ module.exports = { return {}; }, + sendAuditLog_meta: true, + async sendAuditLog({ }) { + return null; + }, + startRefreshLicense() {}, async getUsedEngines() { diff --git a/packages/api/src/utility/auditlog.js b/packages/api/src/utility/auditlog.js new file mode 100644 index 000000000..886742c32 --- /dev/null +++ b/packages/api/src/utility/auditlog.js @@ -0,0 +1,7 @@ +// only in DbGate Premium + +async function sendToAuditLog(req, props) {} + +module.exports = { + sendToAuditLog, +};