|
|
|
@ -47,6 +47,9 @@ export enum ActionType { |
|
|
|
RELATIONS_DELETED = 'RELATIONS_DELETED', |
|
|
|
ALARM_ACK = 'ALARM_ACK', |
|
|
|
ALARM_CLEAR = 'ALARM_CLEAR', |
|
|
|
ADDED_COMMENT = 'ADDED_COMMENT', |
|
|
|
UPDATED_COMMENT = 'UPDATED_COMMENT', |
|
|
|
DELETED_COMMENT = 'DELETED_COMMENT', |
|
|
|
LOGIN = 'LOGIN', |
|
|
|
LOGOUT = 'LOGOUT', |
|
|
|
LOCKOUT = 'LOCKOUT', |
|
|
|
@ -85,6 +88,9 @@ export const actionTypeTranslations = new Map<ActionType, string>( |
|
|
|
[ActionType.RELATIONS_DELETED, 'audit-log.type-relations-delete'], |
|
|
|
[ActionType.ALARM_ACK, 'audit-log.type-alarm-ack'], |
|
|
|
[ActionType.ALARM_CLEAR, 'audit-log.type-alarm-clear'], |
|
|
|
[ActionType.ADDED_COMMENT, 'audit-log.type-added-comment'], |
|
|
|
[ActionType.UPDATED_COMMENT, 'audit-log.type-updated-comment'], |
|
|
|
[ActionType.DELETED_COMMENT, 'audit-log.type-deleted-comment'], |
|
|
|
[ActionType.LOGIN, 'audit-log.type-login'], |
|
|
|
[ActionType.LOGOUT, 'audit-log.type-logout'], |
|
|
|
[ActionType.LOCKOUT, 'audit-log.type-lockout'], |
|
|
|
|