mirror of
https://github.com/bitwarden/browser.git
synced 2025-03-02 03:41:09 +01:00
implement identifier update in org settings (#601)
This commit is contained in:
parent
f5034effd2
commit
c46af91240
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit 420393700b38ed6e8e812366faf9231858bdaa92
|
||||
Subproject commit ed6978baff5b129341bd46cc90a6155c1bcc5124
|
@ -22,6 +22,11 @@
|
||||
<input id="businessName" class="form-control" type="text" name="BusinessName"
|
||||
[(ngModel)]="org.businessName">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="identifier">{{'identifier' | i18n}}</label>
|
||||
<input id="identifier" class="form-control" type="text" name="Identifier"
|
||||
[(ngModel)]="org.identifier">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<app-avatar data="{{org.name}}" dynamic="true" size="75" fontSize="35"></app-avatar>
|
||||
|
@ -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);
|
||||
});
|
||||
|
@ -3163,5 +3163,8 @@
|
||||
},
|
||||
"taxInfoUpdated": {
|
||||
"message": "Tax information updated."
|
||||
},
|
||||
"identifier": {
|
||||
"message": "Identifier"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user