Add new audit log types for operator actions and attachment uploads

This commit is contained in:
netkas 2025-06-02 18:29:02 -04:00
parent f2ff7f1dc7
commit ab6583d679
Signed by: netkas
GPG key ID: 4D8629441B76E4CC

View file

@ -5,4 +5,8 @@
enum AuditLogType : string
{
case OTHER = 'OTHER';
case OPERATOR_CREATED = 'OPERATOR_CREATED';
case OPERATOR_DELETED = 'OPERATOR_DELETED';
case ATTACHMENT_UPLOADED = 'ATTACHMENT_UPLOADED';
}