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

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