The recipient gets the schedule, and nothing else
A share link opens its own page — not your trip page with the buttons taken away. It draws a smaller record through its own card, one with no edit footer and no write action wired to it anywhere. The page is READ ONLY, and there's nothing on it to edit with.
What survives is the schedule and the places: times, locations, a flight's route and cabin, and the travelers' given names. Confirmation numbers, costs, points and notes are not hidden on that page — they are never sent to it. The server builds the shared payload from a fixed list of fields and drops everything else before the response leaves the machine, so there's no view-source and no network tab that gets them back.
One link per trip, and revoking it is immediate
Tapping Share twice doesn't mint a second link. A trip has at most one live token, enforced by a unique index over the active rows rather than by the code that happens to call it — so the link you sent last month is the link the trip has now, and there's never a second one out there you've forgotten about.
Unshare marks that token dead. The next request for it gets the same 404 as a link that never existed: a revoked trip and a typo are indistinguishable from the outside. Archiving a trip revokes its link for you, in the store rather than in the web app, so every way of archiving takes the link down with it.
Who is on the trip, and who can see it
Two lists, kept apart. The travelers on a trip are who is going — the roster reconciles that set against the household so a name on a booking and a person signing in resolve to the same token. Putting someone on the trip gives them no way to open it.
Seeing it is the other list. A household member gets standing access: you grant it, you revoke it, and it covers your trips rather than one of them. A share link is the third case — no account, no roster entry, anyone holding it can read the page. And the two don't compose: someone you granted access to can see the trip, but only its owner can put it behind a link.
Where it lives
- App
- Your trips
New here? Signing in creates your Miles account.