Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions srv/service.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const cds = require('@sap/cds')

class AuditLogService extends cds.Service {
module.exports = class AuditLogService extends cds.Service {
async init() {
// add common audit log entry fields
this.before('*', req => {
Expand All @@ -25,7 +25,3 @@ class AuditLogService extends cds.Service {
}
}
}

AuditLogService.prototype._is_queueable = true

module.exports = AuditLogService
Loading