1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-18 20:59:43 +02:00

Restore activity and audit logs

This commit is contained in:
Harvey Kandola 2024-06-18 11:53:15 -04:00
parent 982e16737e
commit 44b1f263cd

View file

@ -124,10 +124,10 @@ func (r *restoreHandler) PerformRestore(b []byte, l int64) (err error) {
}
// User Activity.
// err = r.dmzUserActivity()
// if err != nil {
// return
// }
err = r.dmzUserActivity()
if err != nil {
return
}
// User Config.
err = r.dmzUserConfig()
@ -144,10 +144,10 @@ func (r *restoreHandler) PerformRestore(b []byte, l int64) (err error) {
}
// Audit Log.
// err = r.dmzAudit()
// if err != nil {
// return
// }
err = r.dmzAudit()
if err != nil {
return
}
// Action.
err = r.dmzAction()