Add is_via_ssh field to edit events (#18867)

Release Notes:

- N/A
This commit is contained in:
Joseph T. Lyons 2024-10-08 13:13:40 -04:00 committed by GitHub
parent 3da1902e24
commit 77bf2ad0f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 17 additions and 7 deletions

View file

@ -1263,6 +1263,7 @@ pub struct EditEventRow {
period_start: i64,
period_end: i64,
environment: String,
is_via_ssh: bool,
}
impl EditEventRow {
@ -1296,6 +1297,7 @@ impl EditEventRow {
period_start: period_start.timestamp_millis(),
period_end: period_end.timestamp_millis(),
environment: event.environment,
is_via_ssh: event.is_via_ssh,
}
}
}