Skip to content

Commit

Permalink
Merge branch 'main' into harshbhat/supportSidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
harshsbhat committed Sep 26, 2024
2 parents 429d205 + 35745b1 commit bfdb4c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/dashboard/app/(app)/audit/[bucket]/row.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type Props = {
event: string;
actor: {
id: string;
type: "key" | "user";
type: "key" | "user" | "system";
name: string | null;
};
location: string | null;
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/lib/tinybird.ts
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ export const auditLogsDataSchema = z
bucket: z.string(),
auditLogId: z.string(),
time: z.number().int(),
actorType: z.enum(["key", "user"]),
actorType: z.enum(["key", "user", "system"]),
actorId: z.string(),
actorName: z.string().nullable(),
actorMeta: z.string().nullable(),
Expand Down

0 comments on commit bfdb4c5

Please sign in to comment.