mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 08:02:49 -05:00
built out the organization edit event from the admin portal (#1508)
* built out the organization edit event from the admin portal * removed unneeded override * added some space * fixed the space
This commit is contained in:
@ -38,7 +38,7 @@ namespace Bit.Core.Enums
|
||||
GroupCreated,
|
||||
[EnumMember(Value = "collection-created")]
|
||||
CollectionCreated,
|
||||
[EnumMember(Value = "sales-assisted")]
|
||||
SalesAssisted
|
||||
[EnumMember(Value = "organization-edited-by-admin")]
|
||||
OrganizationEditedByAdmin
|
||||
}
|
||||
}
|
||||
|
@ -57,5 +57,9 @@ namespace Bit.Core.Models.Business
|
||||
public int? MaxAccessCount { get; set; }
|
||||
|
||||
public bool? HasPassword { get; set; }
|
||||
|
||||
public string EventRaisedByUser { get; set; }
|
||||
|
||||
public bool SalesAssistedTrialStarted { get; set; }
|
||||
}
|
||||
}
|
||||
|
@ -73,5 +73,6 @@ namespace Bit.Core.Services
|
||||
Task<string> GenerateEnterprisePortalSignInTokenAsync(User user);
|
||||
Task<string> GenerateSignInTokenAsync(User user, string purpose);
|
||||
Task RotateApiKeyAsync(User user);
|
||||
string GetUserName(ClaimsPrincipal principal);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user