mirror of
https://github.com/bitwarden/server.git
synced 2025-07-07 02:52:50 -05:00
Updated CB to use both flag and provider status. (#4005)
This commit is contained in:
@ -21,6 +21,7 @@ public class ProfileProviderResponseModel : ResponseModel
|
||||
Permissions = CoreHelpers.LoadClassFromJsonData<Permissions>(provider.Permissions);
|
||||
UserId = provider.UserId;
|
||||
UseEvents = provider.UseEvents;
|
||||
ProviderStatus = provider.ProviderStatus;
|
||||
}
|
||||
|
||||
public Guid Id { get; set; }
|
||||
@ -33,4 +34,5 @@ public class ProfileProviderResponseModel : ResponseModel
|
||||
public Permissions Permissions { get; set; }
|
||||
public Guid? UserId { get; set; }
|
||||
public bool UseEvents { get; set; }
|
||||
public ProviderStatusType ProviderStatus { get; set; }
|
||||
}
|
||||
|
Reference in New Issue
Block a user