feature_flags: Enable assistant2 for all staff (#23502)

This PR makes it so the `assistant2` feature flag is automatically
enabled for all staff.

Previously all the staff members had been opted in to the feature flag
manually (to allow for opting out), but I think we're ready to
unconditionally ship it to all staff.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-01-22 18:02:53 -05:00 committed by GitHub
parent 01b57b10e7
commit 8ed2a81962
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -43,10 +43,6 @@ pub struct Assistant2FeatureFlag;
impl FeatureFlag for Assistant2FeatureFlag {
const NAME: &'static str = "assistant2";
fn enabled_for_staff() -> bool {
false
}
}
pub struct ToolUseFeatureFlag;