diff --git a/frigate/http.py b/frigate/http.py index a2b16857f..df04c6148 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -63,6 +63,10 @@ def events_summary(): return jsonify([e for e in groups.dicts()]) +@bp.route('/events/') +def event(id): + return model_to_dict(Event.get(Event.id == id)) + @bp.route('/events') def events(): limit = request.args.get('limit', 100)