update add reverse map log activity type

This commit is contained in:
2025-01-14 15:09:31 +07:00
parent e1a0c4ca7b
commit da469f0731

View File

@ -7,4 +7,15 @@ export enum ActivityType {
"Download" = "W",
"Login" = "I",
"Logout" = "O",
};
export enum ActivityTypeReverse {
"C" = "Create",
"V" = "View",
"U" = "Update",
"D" = "Delete",
"T" = "Restore",
"W" = "Download",
"I" = "Login",
"O" = "Logout",
};