agent: Remove thread-auto-capture feature (#36474)

We never ended up using this in practice (the feature flag is not
enabled for anyone, not even staff)

Release Notes:

- N/A
This commit is contained in:
Bennet Bo Fenner 2025-08-19 12:59:34 +02:00 committed by GitHub
parent 790a2a0cfa
commit e6d5a6a4fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 0 additions and 65 deletions

View file

@ -77,14 +77,6 @@ impl FeatureFlag for NotebookFeatureFlag {
const NAME: &'static str = "notebooks";
}
pub struct ThreadAutoCaptureFeatureFlag {}
impl FeatureFlag for ThreadAutoCaptureFeatureFlag {
const NAME: &'static str = "thread-auto-capture";
fn enabled_for_staff() -> bool {
false
}
}
pub struct PanicFeatureFlag;
impl FeatureFlag for PanicFeatureFlag {