Create a log for impersonation activities

This commit is contained in:
Eli Ribble 2026-03-19 03:19:03 +00:00
parent b2eb98a66c
commit d287fa44df
No known key found for this signature in database
7 changed files with 1360 additions and 0 deletions

View file

@ -80,6 +80,7 @@ func Where[Q psql.Filterable]() struct {
H3Aggregations h3AggregationWhere[Q]
Jobs jobWhere[Q]
Leads leadWhere[Q]
LogImpersonations logImpersonationWhere[Q]
NoteAudios noteAudioWhere[Q]
NoteAudioBreadcrumbs noteAudioBreadcrumbWhere[Q]
NoteAudioData noteAudioDatumWhere[Q]
@ -186,6 +187,7 @@ func Where[Q psql.Filterable]() struct {
H3Aggregations h3AggregationWhere[Q]
Jobs jobWhere[Q]
Leads leadWhere[Q]
LogImpersonations logImpersonationWhere[Q]
NoteAudios noteAudioWhere[Q]
NoteAudioBreadcrumbs noteAudioBreadcrumbWhere[Q]
NoteAudioData noteAudioDatumWhere[Q]
@ -291,6 +293,7 @@ func Where[Q psql.Filterable]() struct {
H3Aggregations: buildH3AggregationWhere[Q](H3Aggregations.Columns),
Jobs: buildJobWhere[Q](Jobs.Columns),
Leads: buildLeadWhere[Q](Leads.Columns),
LogImpersonations: buildLogImpersonationWhere[Q](LogImpersonations.Columns),
NoteAudios: buildNoteAudioWhere[Q](NoteAudios.Columns),
NoteAudioBreadcrumbs: buildNoteAudioBreadcrumbWhere[Q](NoteAudioBreadcrumbs.Columns),
NoteAudioData: buildNoteAudioDatumWhere[Q](NoteAudioData.Columns),