(username: str)
| 14714 | "id": int(ur["id"]), |
| 14715 | "delivered_at_local": _local_time_str(ur["delivered_at"]) if ur["delivered_at"] else None, |
| 14716 | "delivered_at_utc": ur["delivered_at"], |
| 14717 | "read_at_local": _local_time_str(ur["read_at"]) if ur["read_at"] else None, |
| 14718 | "read_at_utc": ur["read_at"], |
| 14719 | }) |
| 14720 | except Exception: |
| 14721 | pass |
| 14722 | |
| 14723 | conn.close() |
| 14724 | return jsonify({"ok": True, "messages": out, "status_updates": updates, "server_now": now_z()}) |
| 14725 | |
| 14726 | |
| 14727 | @app.route("/api/group/<int:gid>/since") |
nothing calls this directly
no test coverage detected