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 23:02:53 +00:00
committed by GitHub
parent 01b57b10e7
commit 8ed2a81962
@@ -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;