1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-20 09:35:22 +02:00
bitwarden-browser/apps/browser/src/managed_schema.json
Oscar Hinton af371af6e1
[SM-88] [BEEEP] Add support for chrome.storage.managed for environment urls (#3120)
* Add managed_schema

* Add note on login page which server you are logging into.

* Implement it

* Remove caching logic since it seems unecessary

* Add error

* Handle error in hasManagedEnvironment

* Fix compile
2022-08-08 07:40:09 -04:00

21 lines
509 B
JSON

{
"type": "object",
"properties": {
"environment": {
"type": "object",
"properties": {
"base": {
"type": "string",
"description": "Base url, typically only this value needs to be set"
},
"webVault": { "type": "string" },
"api": { "type": "string" },
"identity": { "type": "string" },
"icons": { "type": "string" },
"notifications": { "type": "string" },
"events": { "type": "string" }
}
}
}
}