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

Revert old changes

This commit is contained in:
Thomas Rittson 2025-04-02 12:33:43 +10:00
parent a42f21159f
commit a4df397c7e
No known key found for this signature in database
GPG Key ID: CDDDA03861C35E27
2 changed files with 1 additions and 2 deletions

View File

@ -512,7 +512,7 @@ public class CurrentContext : ICurrentContext
return claims[type].FirstOrDefault()?.Value; return claims[type].FirstOrDefault()?.Value;
} }
public static Permissions SetOrganizationPermissionsFromClaims(string organizationId, Dictionary<string, IEnumerable<Claim>> claimsDict) private Permissions SetOrganizationPermissionsFromClaims(string organizationId, Dictionary<string, IEnumerable<Claim>> claimsDict)
{ {
bool hasClaim(string claimKey) bool hasClaim(string claimKey)
{ {

View File

@ -22,7 +22,6 @@ public interface ICurrentContext
string IpAddress { get; set; } string IpAddress { get; set; }
string CountryName { get; set; } string CountryName { get; set; }
List<CurrentContextOrganization> Organizations { get; set; } List<CurrentContextOrganization> Organizations { get; set; }
List<CurrentContextProvider> Providers { get; set; }
Guid? InstallationId { get; set; } Guid? InstallationId { get; set; }
Guid? OrganizationId { get; set; } Guid? OrganizationId { get; set; }
IdentityClientType IdentityClientType { get; set; } IdentityClientType IdentityClientType { get; set; }