Browse Source

Merge 22310039e4 into 660faee68e

pull/7433/merge
Raphaël Roumezin 17 hours ago
committed by GitHub
parent
commit
3066a76a66
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      src/api/core/mod.rs

4
src/api/core/mod.rs

@ -220,6 +220,7 @@ fn config() -> Json<Value> {
&FeatureFlagFilter::ValidOnly, &FeatureFlagFilter::ValidOnly,
); );
feature_states.insert("pm-19148-innovation-archive".to_owned(), true); feature_states.insert("pm-19148-innovation-archive".to_owned(), true);
feature_states.insert("fill-assist-targeting-rules".to_owned(), true);
Json(json!({ Json(json!({
// Note: The clients use this version to handle backwards compatibility concerns // Note: The clients use this version to handle backwards compatibility concerns
@ -244,6 +245,9 @@ fn config() -> Json<Value> {
"notifications": format!("{domain}/notifications"), "notifications": format!("{domain}/notifications"),
"sso": "", "sso": "",
"cloudRegion": null, "cloudRegion": null,
// fillAssistRules as returned by the Bitwarden server (https://github.com/bitwarden/server @ 045113a),
// and hardcoded in the Bitwarden clients (https://github.com/bitwarden/clients @ 2581be6)
"fillAssistRules": "https://github.com/bitwarden/map-the-web/releases/latest/download",
}, },
// Bitwarden uses this for the self-hosted servers to indicate the default push technology // Bitwarden uses this for the self-hosted servers to indicate the default push technology
"push": { "push": {

Loading…
Cancel
Save