1
0
mirror of https://github.com/bitwarden/web synced 2025-12-21 10:43:26 +00:00

implement identifier update in org settings (#601)

This commit is contained in:
Kyle Spearrin
2020-08-12 16:46:18 -04:00
committed by GitHub
parent f5034effd2
commit c46af91240
4 changed files with 10 additions and 1 deletions

View File

@@ -65,6 +65,7 @@ export class AccountComponent {
request.name = this.org.name;
request.businessName = this.org.businessName;
request.billingEmail = this.org.billingEmail;
request.identifier = this.org.identifier;
this.formPromise = this.apiService.putOrganization(this.organizationId, request).then(() => {
return this.syncService.fullSync(true);
});