This commit is contained in:
ponzischeme89
2026-08-19 06:57:59 +12:00
parent 8c847c59b8
commit 2b43b9ef12
94 changed files with 6359 additions and 778 deletions
+5
View File
@@ -88,6 +88,11 @@ func (s *Server) adminRoutes() http.Handler {
mux.Handle("GET /admin/api/logins/devices", s.adminAuth(s.handleAdminLoginDevices))
mux.Handle("GET /admin/api/logins/devices/{deviceID}", s.adminAuth(s.handleAdminDeviceDetail))
// The outbound notification history. Distinct from the feed below it: that is the
// operator's own activity bell, this is the record of what Memby sent to viewers and
// to external services.
mux.Handle("GET /admin/api/notification-log", s.adminAuth(s.handleAdminNotificationLog))
// The administrative feed behind the notification bell.
mux.Handle("GET /admin/api/notifications", s.adminAuth(s.handleAdminNotifications))
mux.Handle("POST /admin/api/notifications/read", s.adminAuth(s.handleAdminNotificationsRead))