Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ public class IdentityProviderDetails {

public IdentityProviderOauth2Configuration oauth2;

public Guid? tenantId;

public IdentityProviderType type;

public IdentityProviderDetails with(Action<IdentityProviderDetails> action) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ public class BaseIdentityProvider<D>: Enableable, IdentityProvider {

public IDictionary<Guid, IdentityProviderTenantConfiguration> tenantConfiguration;

public Guid? tenantId;

public IdentityProviderType type;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ public class IdentityProviderSearchCriteria: BaseSearchCriteria {

public string name;

public Guid? tenantId;

public IdentityProviderType type;

public IdentityProviderSearchCriteria with(Action<IdentityProviderSearchCriteria> action) {
Expand Down