forked from primefaces/primeng
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request primefaces#521 from atretyak1985/issue_#NNTR-530
Fix the error that appears in the console log on the page "Activity l…
- Loading branch information
Showing
3 changed files
with
60 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,21 @@ | ||
export interface RequestExportForm { | ||
limit: number; | ||
import { BasicListResponse } from 'common/response'; | ||
|
||
|
||
export interface ActivityLogListResponse extends BasicListResponse { | ||
items: Array<ActivityLogItem>; | ||
} | ||
|
||
export interface ActivityLogItem { | ||
id: number; | ||
time: number; | ||
event_type: string; | ||
event_trigger: string; | ||
event_name: string; | ||
event_data: Object; | ||
severity: number; | ||
hostname: string; | ||
address: string; | ||
message: string; | ||
device_id: number; | ||
user_id: number; | ||
} |