diff --git a/fam-core/src/fam_core/motion_notifier/motion_notifier.py b/fam-core/src/fam_core/motion_notifier/motion_notifier.py index 720090a..c62a989 100644 --- a/fam-core/src/fam_core/motion_notifier/motion_notifier.py +++ b/fam-core/src/fam_core/motion_notifier/motion_notifier.py @@ -360,8 +360,6 @@ class MotionNotifier: "running": self.is_alive(), "enabled": self.enabled, "poll_enabled": self.poll_enabled, - "camera_map": {**self.camera_name_to_id, **self._ss_name_to_id}, - "camera_loaded": self._camera_loaded, "last_event_id": self._last_event_id, "zero_dur_pending": len(self._zero_dur_ids), "last_poll_at": self._last_poll_at.isoformat() if self._last_poll_at else None, diff --git a/fam-core/tests/test_auth.py b/fam-core/tests/test_auth.py index d526868..0ab66b9 100644 --- a/fam-core/tests/test_auth.py +++ b/fam-core/tests/test_auth.py @@ -93,7 +93,7 @@ def test_is_authed_false_without_cookie(): def test_whitelist_exact_paths(): for path in ('/login', '/api/login', '/api/logout', '/api/auth/check', - '/health', '/favicon.ico', '/api/ss/webhook'): + '/health', '/favicon.ico'): assert auth._is_whitelisted(path) is True