jf-actvitity: functioning route, ombi fixes

forgot to switch branches before doing a fix for #455, so it's in here
too. OmbiUserByJfID/getOmbiUser takes an optional email *string, to
optionally pass an override email address to search with, used when
changing it.
This commit is contained in:
Harvey Tindall
2025-12-20 11:21:13 +00:00
parent c21df253a1
commit d7bad69d40
15 changed files with 89 additions and 44 deletions

View File

@@ -517,5 +517,10 @@ type LabelsDTO struct {
}
type ActivityLogEntriesDTO struct {
Entries []mediabrowser.ActivityLogEntry `json:"entries"`
Entries []ActivityLogEntryDTO `json:"entries"`
}
type ActivityLogEntryDTO struct {
mediabrowser.ActivityLogEntry
Date int64 `json:"Date"`
}