mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
implement identifier update in org settings (#601)
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: 420393700b...ed6978baff
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user