collab: Remove POST /billing/subscriptions/sync endpoint (#35232)

This PR removes the `POST /billing/subscriptions/sync` endpoint, as it
has been moved to `cloud.zed.dev`.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-07-28 16:22:54 -04:00 committed by GitHub
parent 994d400ab8
commit ab90ed41da
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 69 deletions

View file

@ -106,7 +106,6 @@ pub fn routes(rpc_server: Arc<rpc::Server>) -> Router<(), Body> {
.route("/users/:id/refresh_llm_tokens", post(refresh_llm_tokens))
.route("/users/:id/update_plan", post(update_plan))
.route("/rpc_server_snapshot", get(get_rpc_server_snapshot))
.merge(billing::router())
.merge(contributors::router())
.layer(
ServiceBuilder::new()