mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-24 13:56:39 +00:00
Add logActionAudit and query endpoint
This commit is contained in:
14
server/routers/auditLogs/types.ts
Normal file
14
server/routers/auditLogs/types.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
export type QueryActionAuditLogResponse = {
|
||||
log: {
|
||||
orgId: string;
|
||||
action: string;
|
||||
actorType: string;
|
||||
timestamp: number;
|
||||
actor: string;
|
||||
}[];
|
||||
pagination: {
|
||||
total: number;
|
||||
limit: number;
|
||||
offset: number;
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user