fix: remove /ui prefix globally, fix face-photo encoding, fix console video, default sort by time

This commit is contained in:
tian 2026-07-20 15:54:09 +08:00
parent b7757c7387
commit ab32118f75
3 changed files with 4 additions and 3 deletions

View File

@ -58,7 +58,7 @@ func (r *FaceGalleryRepo) ListPersons() ([]PersonRecord, error) {
}
defer db.Close()
rows, err := db.Query(`SELECT id, name, created_at FROM face_persons ORDER BY name`)
rows, err := db.Query(`SELECT id, name, created_at FROM face_persons ORDER BY created_at DESC`)
if err != nil {
return nil, err
}
@ -180,3 +180,4 @@ func (r *FaceGalleryRepo) DeletePhoto(photoID int) error {
if path != "" { os.Remove(filepath.Join("dataset", path)) }
return nil
}

View File

@ -697,6 +697,8 @@ func (u *UI) RegisterAlarmRoutes(r chi.Router) {
r.Get("/api/alarms/unacknowledged-count", u.apiAlarmUnacknowledgedCount)
r.Get("/api/alarms/daily-count", u.apiAlarmDailyCount)
r.Get("/api/alarms/export", u.apiAlarmExport)
r.Get("/api/monitor/channels", u.apiMonitorChannels)
r.Get("/api/device-metrics", u.apiDeviceMetrics)
}
func (u *UI) Routes() (chi.Router, error) {
@ -839,8 +841,6 @@ func (u *UI) Routes() (chi.Router, error) {
r.Post("/face-gallery/sync", u.actionFaceGallerySync)
r.Get("/monitor", u.pageMonitor)
r.Get("/hls/*", u.proxyHLS)
r.Get("/api/monitor/channels", u.apiMonitorChannels)
r.Get("/api/device-metrics", u.apiDeviceMetrics)
r.Get("/recognition", u.pageRecognition)
r.Get("/logs", u.pageLogs)

Binary file not shown.