mirror of
https://github.com/bitwarden/web
synced 2025-12-10 21:33:16 +00:00
Crypto Agent (#1243)
This commit is contained in:
@@ -24,6 +24,18 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<div class="form-check">
|
||||||
|
<input class="form-check-input" type="checkbox" id="useCryptoAgent" formControlName="useCryptoAgent">
|
||||||
|
<label class="form-check-label" for="useCryptoAgent">{{'enabled' | i18n}}</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label>{{'cryptoAgentUrl' | i18n}}</label>
|
||||||
|
<input class="form-control" formControlName="cryptoAgentUrl">
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- OIDC -->
|
<!-- OIDC -->
|
||||||
<div *ngIf="data.value.configType == 1">
|
<div *ngIf="data.value.configType == 1">
|
||||||
<div class="config-section">
|
<div class="config-section">
|
||||||
|
|||||||
@@ -37,6 +37,9 @@ export class SsoComponent implements OnInit {
|
|||||||
data = this.fb.group({
|
data = this.fb.group({
|
||||||
configType: [],
|
configType: [],
|
||||||
|
|
||||||
|
useCryptoAgent: [],
|
||||||
|
cryptoAgentUrl: [],
|
||||||
|
|
||||||
// OpenId
|
// OpenId
|
||||||
authority: [],
|
authority: [],
|
||||||
clientId: [],
|
clientId: [],
|
||||||
|
|||||||
2
jslib
2
jslib
Submodule jslib updated: 24fe836032...71f8ef601f
@@ -135,7 +135,7 @@ const totpService = new TotpService(storageService, cryptoFunctionService, conso
|
|||||||
const containerService = new ContainerService(cryptoService);
|
const containerService = new ContainerService(cryptoService);
|
||||||
const authService = new AuthService(cryptoService, apiService,
|
const authService = new AuthService(cryptoService, apiService,
|
||||||
userService, tokenService, appIdService, i18nService, platformUtilsService, messagingService, vaultTimeoutService,
|
userService, tokenService, appIdService, i18nService, platformUtilsService, messagingService, vaultTimeoutService,
|
||||||
consoleLogService);
|
consoleLogService, cryptoFunctionService);
|
||||||
const exportService = new ExportService(folderService, cipherService, apiService, cryptoService);
|
const exportService = new ExportService(folderService, cipherService, apiService, cryptoService);
|
||||||
const importService = new ImportService(cipherService, folderService, apiService, i18nService, collectionService,
|
const importService = new ImportService(cipherService, folderService, apiService, i18nService, collectionService,
|
||||||
platformUtilsService, cryptoService);
|
platformUtilsService, cryptoService);
|
||||||
|
|||||||
@@ -4451,5 +4451,8 @@
|
|||||||
},
|
},
|
||||||
"ssoSettingsSaved": {
|
"ssoSettingsSaved": {
|
||||||
"message": "Single Sign-On configuration was saved."
|
"message": "Single Sign-On configuration was saved."
|
||||||
|
},
|
||||||
|
"ssoCryptoAgentUnavailable": {
|
||||||
|
"message": "Unable to reach the crypto agent, try again later."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user