|
|
|
@ -2296,7 +2296,7 @@ class BaseModelSqlv2 {
|
|
|
|
|
op_type: AuditOperationTypes.DATA, |
|
|
|
|
op_sub_type: AuditOperationSubTypes.INSERT, |
|
|
|
|
description: DOMPurify.sanitize( |
|
|
|
|
`${id} inserted into ${this.model.title}` |
|
|
|
|
`Record with ID ${id} has been inserted into Table ${this.model.title}` |
|
|
|
|
), |
|
|
|
|
// details: JSON.stringify(data),
|
|
|
|
|
ip: req?.clientIp, |
|
|
|
@ -2322,7 +2322,9 @@ class BaseModelSqlv2 {
|
|
|
|
|
op_type: AuditOperationTypes.DATA, |
|
|
|
|
op_sub_type: AuditOperationSubTypes.BULK_UPDATE, |
|
|
|
|
description: DOMPurify.sanitize( |
|
|
|
|
`${noOfUpdatedRecords} records bulk updated in ${this.model.title}` |
|
|
|
|
`${noOfUpdatedRecords} ${ |
|
|
|
|
noOfUpdatedRecords > 1 ? 'records have' : 'record has' |
|
|
|
|
} been bulk updated in ${this.model.title}` |
|
|
|
|
), |
|
|
|
|
// details: JSON.stringify(data),
|
|
|
|
|
ip: req?.clientIp, |
|
|
|
@ -2347,7 +2349,9 @@ class BaseModelSqlv2 {
|
|
|
|
|
op_type: AuditOperationTypes.DATA, |
|
|
|
|
op_sub_type: AuditOperationSubTypes.BULK_DELETE, |
|
|
|
|
description: DOMPurify.sanitize( |
|
|
|
|
`${noOfDeletedRecords} records bulk deleted in ${this.model.title}` |
|
|
|
|
`${noOfDeletedRecords} ${ |
|
|
|
|
noOfDeletedRecords > 1 ? 'records have' : 'record has' |
|
|
|
|
} been bulk deleted in ${this.model.title}` |
|
|
|
|
), |
|
|
|
|
// details: JSON.stringify(data),
|
|
|
|
|
ip: req?.clientIp, |
|
|
|
@ -2363,7 +2367,9 @@ class BaseModelSqlv2 {
|
|
|
|
|
op_type: AuditOperationTypes.DATA, |
|
|
|
|
op_sub_type: AuditOperationSubTypes.BULK_INSERT, |
|
|
|
|
description: DOMPurify.sanitize( |
|
|
|
|
`${data.length} records bulk inserted into ${this.model.title}` |
|
|
|
|
`${data.length} ${ |
|
|
|
|
data.length > 1 ? 'records have' : 'record has' |
|
|
|
|
} been bulk inserted in ${this.model.title}` |
|
|
|
|
), |
|
|
|
|
// details: JSON.stringify(data),
|
|
|
|
|
ip: req?.clientIp, |
|
|
|
@ -2396,7 +2402,9 @@ class BaseModelSqlv2 {
|
|
|
|
|
row_id: id, |
|
|
|
|
op_type: AuditOperationTypes.DATA, |
|
|
|
|
op_sub_type: AuditOperationSubTypes.UPDATE, |
|
|
|
|
description: DOMPurify.sanitize(`${id} updated in ${this.model.title}`), |
|
|
|
|
description: DOMPurify.sanitize( |
|
|
|
|
`Record with ID ${id} has been updated in Table ${this.model.title}` |
|
|
|
|
), |
|
|
|
|
// details: JSON.stringify(data),
|
|
|
|
|
ip: req?.clientIp, |
|
|
|
|
user: req?.user?.email, |
|
|
|
@ -2424,7 +2432,9 @@ class BaseModelSqlv2 {
|
|
|
|
|
row_id: id, |
|
|
|
|
op_type: AuditOperationTypes.DATA, |
|
|
|
|
op_sub_type: AuditOperationSubTypes.DELETE, |
|
|
|
|
description: DOMPurify.sanitize(`${id} deleted from ${this.model.title}`), |
|
|
|
|
description: DOMPurify.sanitize( |
|
|
|
|
`Record with ID ${id} has been deleted in Table ${this.model.title}` |
|
|
|
|
), |
|
|
|
|
// details: JSON.stringify(data),
|
|
|
|
|
ip: req?.clientIp, |
|
|
|
|
user: req?.user?.email, |
|
|
|
@ -2695,7 +2705,7 @@ class BaseModelSqlv2 {
|
|
|
|
|
op_sub_type: AuditOperationSubTypes.LINK_RECORD, |
|
|
|
|
row_id: rowId, |
|
|
|
|
description: DOMPurify.sanitize( |
|
|
|
|
`Record [id:${childId}] record linked with record [id:${rowId}] record in ${this.model.title}` |
|
|
|
|
`Record [id:${childId}] has been linked with record [id:${rowId}] in ${this.model.title}` |
|
|
|
|
), |
|
|
|
|
// details: JSON.stringify(data),
|
|
|
|
|
ip: req?.clientIp, |
|
|
|
@ -2797,7 +2807,7 @@ class BaseModelSqlv2 {
|
|
|
|
|
op_sub_type: AuditOperationSubTypes.UNLINK_RECORD, |
|
|
|
|
row_id: rowId, |
|
|
|
|
description: DOMPurify.sanitize( |
|
|
|
|
`Record [id:${childId}] record unlinked with record [id:${rowId}] record in ${this.model.title}` |
|
|
|
|
`Record [id:${childId}] has been unlinked with record [id:${rowId}] in ${this.model.title}` |
|
|
|
|
), |
|
|
|
|
// details: JSON.stringify(data),
|
|
|
|
|
ip: req?.clientIp, |
|
|
|
|