collab: Remove GET /billing/preferences endpoint (#34566)

This PR removes the `GET /billing/preferences` endpoint, as it has been
moved to `cloud.zed.dev`.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-07-16 13:55:01 -04:00 committed by GitHub
parent ffc69b07e5
commit 048dc47d87
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 3 additions and 140 deletions

View file

@ -1,6 +1,5 @@
pub mod api;
pub mod auth;
mod cents;
pub mod db;
pub mod env;
pub mod executor;
@ -21,7 +20,6 @@ use axum::{
http::{HeaderMap, StatusCode},
response::IntoResponse,
};
pub use cents::*;
use db::{ChannelId, Database};
use executor::Executor;
use llm::db::LlmDatabase;