1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 05:28:15 -05:00

Allow org update api on self hosted for identifier only (#898)

This commit is contained in:
Kyle Spearrin 2020-08-28 11:22:19 -04:00 committed by GitHub
parent 526bdfdb05
commit 303b9a7875
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 8 deletions

View File

@ -177,7 +177,6 @@ namespace Bit.Api.Controllers
[HttpPut("{id}")] [HttpPut("{id}")]
[HttpPost("{id}")] [HttpPost("{id}")]
[SelfHosted(NotSelfHostedOnly = true)]
public async Task<OrganizationResponseModel> Put(string id, [FromBody]OrganizationUpdateRequestModel model) public async Task<OrganizationResponseModel> Put(string id, [FromBody]OrganizationUpdateRequestModel model)
{ {
var orgIdGuid = new Guid(id); var orgIdGuid = new Guid(id);
@ -192,10 +191,10 @@ namespace Bit.Api.Controllers
throw new NotFoundException(); throw new NotFoundException();
} }
var updatebilling = model.BusinessName != organization.BusinessName || var updatebilling = !_globalSettings.SelfHosted && (model.BusinessName != organization.BusinessName ||
model.BillingEmail != organization.BillingEmail; model.BillingEmail != organization.BillingEmail);
await _organizationService.UpdateAsync(model.ToOrganization(organization), updatebilling); await _organizationService.UpdateAsync(model.ToOrganization(organization, _globalSettings), updatebilling);
return new OrganizationResponseModel(organization); return new OrganizationResponseModel(organization);
} }

View File

@ -17,11 +17,15 @@ namespace Bit.Core.Models.Api
[StringLength(50)] [StringLength(50)]
public string BillingEmail { get; set; } public string BillingEmail { get; set; }
public virtual Organization ToOrganization(Organization existingOrganization) public virtual Organization ToOrganization(Organization existingOrganization, GlobalSettings globalSettings)
{ {
existingOrganization.Name = Name; if (!globalSettings.SelfHosted)
existingOrganization.BusinessName = BusinessName; {
existingOrganization.BillingEmail = BillingEmail?.ToLowerInvariant()?.Trim(); // These items come from the license file
existingOrganization.Name = Name;
existingOrganization.BusinessName = BusinessName;
existingOrganization.BillingEmail = BillingEmail?.ToLowerInvariant()?.Trim();
}
existingOrganization.Identifier = Identifier; existingOrganization.Identifier = Identifier;
return existingOrganization; return existingOrganization;
} }