├── .gitignore ├── CODEOWNERS ├── Fabric.Identity.API ├── .dockerignore ├── Authorization │ ├── BaseAuthorizationHandler.cs │ ├── IHaveAuthorizationClaimType.cs │ ├── ReadAuthorizationHandler.cs │ ├── ReadScopeRequirement.cs │ ├── RegisteredClientThresholdRequirement.cs │ ├── RegistrationAuthorizationHandler.cs │ ├── SearchUserAuthorizationHandler.cs │ └── SearchUserScopeRequirement.cs ├── Config.cs ├── Configuration │ ├── AppConfiguration.cs │ ├── ApplicationInsights.cs │ ├── AzureActiveDirectoryClientSettings.cs │ ├── AzureActiveDirectorySettings.cs │ ├── AzureClientApplicationSettings.cs │ ├── ExternalIdProviderSettings.cs │ ├── FilterSettings.cs │ ├── GroupFilterSettings.cs │ ├── HostingOptions.cs │ ├── IAppConfiguration.cs │ ├── IdentityConfigurationProvider.cs │ ├── IdentityProviderSearchSettings.cs │ ├── LdapSettings.cs │ └── SigningCertificateSettings.cs ├── Connected Services │ └── Application Insights │ │ └── ConnectedService.json ├── Dockerfile ├── Documentation │ ├── ParamMetadataOperationFilter.cs │ ├── PathVersionDocumentFilter.cs │ ├── SecurityRequirementsOperationFilter.cs │ ├── SetBodyParametersRequiredOperationFilter.cs │ ├── TagFilter.cs │ ├── VersionRemovalOperationFilter.cs │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ └── gradlew.bat ├── EventSinks │ └── SerilogEventSink.cs ├── Events │ ├── EntityAuditEvent.cs │ ├── EntityCreatedAuditEvent.cs │ ├── EntityDeletedAuditEvent.cs │ ├── EntityReadAuditEvent.cs │ ├── EntityUpdatedAuditEvent.cs │ └── FabricUserLoginSuccessEvent.cs ├── Exceptions │ ├── AlreadyExistsException.cs │ ├── AzureActiveDirectoryException.cs │ ├── BadRequestException.cs │ ├── DirectorySearchException.cs │ ├── ExceptionMessageResources.cs │ ├── InvalidExternalIdentityProviderException.cs │ ├── InvalidIssuerException.cs │ ├── MissingIssuerClaimException.cs │ ├── MissingUserClaimException.cs │ └── ResourceOperationException.cs ├── ExtensionGrantValidators │ └── DelegationGrantValidator.cs ├── Extensions │ ├── AuthenticationBuilderExtensions.cs │ ├── IdentityServerBuilderExtensions.cs │ ├── ProfileDataRequestContextExtensions.cs │ ├── ServiceCollectionExtensions.cs │ ├── UtilityExtensions.cs │ └── WebHostBuilderExtensions.cs ├── Fabric.Identity.API.csproj ├── FabricIdentityConstants.cs ├── FabricIdentityEnums.cs ├── Infrastructure │ ├── CheckXForwardHeader.cs │ ├── Decorator.cs │ ├── FabricCorsPolicyProvider.cs │ ├── HttpRequestMessageFactory.cs │ ├── IHttpRequestMessageFactory.cs │ ├── MapperProfile.cs │ ├── Monitoring │ │ ├── HealthCheckerService.cs │ │ └── IHealthCheckerService.cs │ ├── PolicyProvider.cs │ └── QueryStringBinding │ │ ├── CommaSeparatedAttribute.cs │ │ ├── CommaSeparatedQueryStringConvention.cs │ │ ├── SeparatedQueryStringAttribute.cs │ │ ├── SeparatedQueryStringValueProvider.cs │ │ └── SeparatedQueryStringValueProviderFactory.cs ├── Logging │ └── LogFactory.cs ├── Management │ ├── ApiResourceController.cs │ ├── BaseController.cs │ ├── ClientController.cs │ ├── IdentityProvidersController.cs │ ├── IdentityResourceController.cs │ ├── PrincipalsController.cs │ ├── UserLoginManager.cs │ └── UsersController.cs ├── Models │ ├── ApiResource.cs │ ├── AzureActiveDirectoryJwtClaimTypes.cs │ ├── BaseResource.cs │ ├── ClaimsResult.cs │ ├── Client.cs │ ├── DirectoryEntryWrapper.cs │ ├── DiscoveryServiceApiModel.cs │ ├── DiscoveryServiceResponseModel.cs │ ├── Error.cs │ ├── ErrorFactory.cs │ ├── ExternalProvider.cs │ ├── ExternalProviderApiModel.cs │ ├── FabricGraphApiGroup.cs │ ├── FabricGraphApiUser.cs │ ├── FabricGroup.cs │ ├── FabricGroupApiModel.cs │ ├── FabricIdentityResources.cs │ ├── FabricPrincipal.cs │ ├── FabricPrincipalApiModel.cs │ ├── IdentityResource.cs │ ├── IdentityStatusModel.cs │ ├── ModelExtensions.cs │ ├── PrincipalSearchRequest.cs │ ├── SearchResultApiModel.cs │ ├── TokenResponseWrapper.cs │ ├── User.cs │ ├── UserApiModel.cs │ ├── UserLogin.cs │ └── UserSearchParameter.cs ├── Persistence │ ├── BaseIdentityServerConfigurator.cs │ ├── CouchDb │ │ ├── Configuration │ │ │ ├── CouchDbSettings.cs │ │ │ └── ICouchDbSettings.cs │ │ ├── CouchDbEventSink.cs │ │ ├── CouchDbSetupException.cs │ │ ├── DependencyInjection │ │ │ └── CouchDbIdentityServerConfigurator.cs │ │ ├── Services │ │ │ ├── AuditingDocumentDbService.cs │ │ │ ├── CouchDbAccessService.cs │ │ │ └── CouchDbBootstrapper.cs │ │ └── Stores │ │ │ ├── CouchDbApiResourceStore.cs │ │ │ ├── CouchDbClientStore.cs │ │ │ ├── CouchDbIdentityResourceStore.cs │ │ │ ├── CouchDbPersistedGrantStore.cs │ │ │ ├── CouchDbResourceStore.cs │ │ │ └── CouchDbUserStore.cs │ ├── IApiResourceStore.cs │ ├── IClientManagementStore.cs │ ├── IDbBootstrapper.cs │ ├── IDocumentDbService.cs │ ├── IIdentityResourceStore.cs │ ├── IIdentityServerConfigurator.cs │ ├── IPersistedGrantStore.cs │ ├── IResourceStore.cs │ ├── IUserStore.cs │ ├── InMemory │ │ ├── DependencyInjection │ │ │ └── InMemoryIdentityServerConfigurator.cs │ │ ├── Services │ │ │ ├── InMemoryDbBootstrapper.cs │ │ │ └── InMemoryDocumentService.cs │ │ └── Stores │ │ │ ├── InMemoryApiResourceStore.cs │ │ │ ├── InMemoryClientManagementStore.cs │ │ │ ├── InMemoryIdentityResourceStore.cs │ │ │ ├── InMemoryPersistedGrantStore.cs │ │ │ ├── InMemoryResourceStore.cs │ │ │ └── InMemoryUserStore.cs │ └── SqlServer │ │ ├── Configuration │ │ ├── ConnectionStrings.cs │ │ └── IConnectionStrings.cs │ │ ├── DependencyInjection │ │ └── SqlServerIdentityServerConfigurator.cs │ │ ├── EntityModels │ │ ├── ApiClaim.cs │ │ ├── ApiResource.cs │ │ ├── ApiScope.cs │ │ ├── ApiScopeClaim.cs │ │ ├── ApiSecret.cs │ │ ├── Client.cs │ │ ├── ClientClaim.cs │ │ ├── ClientCorsOrigin.cs │ │ ├── ClientGrantType.cs │ │ ├── ClientIdPrestriction.cs │ │ ├── ClientPostLogoutRedirectUri.cs │ │ ├── ClientRedirectUri.cs │ │ ├── ClientScope.cs │ │ ├── ClientSecret.cs │ │ ├── ISoftDelete.cs │ │ ├── ITrackable.cs │ │ ├── IdentityClaim.cs │ │ ├── IdentityResource.cs │ │ ├── PersistedGrant.cs │ │ ├── User.cs │ │ ├── UserClaim.cs │ │ └── UserLogin.cs │ │ ├── Mappers │ │ ├── ApiResourceMapper.cs │ │ ├── ApiResourceMapperProfile.cs │ │ ├── ClientMapper.cs │ │ ├── ClientMapperProfile.cs │ │ ├── IdentityResourceMapper.cs │ │ ├── IdentityResourceMapperProfile.cs │ │ ├── PersistedGrantMapper.cs │ │ ├── PersistedGrantMapperProfile.cs │ │ ├── UserMapper.cs │ │ └── UserMapperProfile.cs │ │ ├── Scripts │ │ ├── create_identity_database.sql │ │ └── create_identity_tables.sql │ │ ├── Services │ │ ├── IIdentityDbContext.cs │ │ ├── IdentityDbContext.cs │ │ └── SqlServerBootstrapper.cs │ │ └── Stores │ │ ├── SqlServerApiResourceStore.cs │ │ ├── SqlServerBaseStore.cs │ │ ├── SqlServerClientStore.cs │ │ ├── SqlServerIdentityResourceStore.cs │ │ ├── SqlServerPersistedGrantStore.cs │ │ ├── SqlServerResourceStore.cs │ │ └── SqlServerUserStore.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Quickstart │ ├── Account │ │ ├── AccountController.cs │ │ ├── AccountOptions.cs │ │ ├── AccountService.cs │ │ ├── LoggedOutViewModel.cs │ │ ├── LoginInputModel.cs │ │ ├── LoginViewModel.cs │ │ ├── LogoutInputModel.cs │ │ └── LogoutViewModel.cs │ ├── Consent │ │ ├── ConsentController.cs │ │ ├── ConsentInputModel.cs │ │ ├── ConsentOptions.cs │ │ ├── ConsentService.cs │ │ ├── ConsentViewModel.cs │ │ ├── ProcessConsentResult.cs │ │ └── ScopeViewModel.cs │ ├── Grants │ │ ├── GrantsController.cs │ │ └── GrantsViewModel.cs │ ├── Home │ │ ├── ErrorViewModel.cs │ │ └── HomeController.cs │ ├── SecurityHeadersAttribute.cs │ └── TestUsers.cs ├── README.md ├── Resource.resx ├── SerializationSettings.cs ├── Services │ ├── ActiveDirectoryProviderService.cs │ ├── ActiveDirectoryProxy.cs │ ├── Azure │ │ ├── AzureActiveDirectoryCacheService.cs │ │ ├── AzureActiveDirectoryClientCredentialsService.cs │ │ ├── AzureDirectoryProviderService.cs │ │ ├── IAzureActiveDirectoryClientCredentialsService.cs │ │ ├── IMicrosoftGraphApi.cs │ │ └── MicrosoftGraphApi.cs │ ├── ClaimsService.cs │ ├── CorsPolicyService.cs │ ├── DecryptionService.cs │ ├── DiscoveryServiceClient.cs │ ├── ExternalIdentityProviderServiceResolver.cs │ ├── GroupFilterService.cs │ ├── IActiveDirectoryProxy.cs │ ├── ICertificateService.cs │ ├── IClaimsService.cs │ ├── IExternalIdentityProviderSearchService.cs │ ├── IExternalIdentityProviderService.cs │ ├── IExternalIdentityProviderServiceResolver.cs │ ├── IIdentityProviderConfigurationService.cs │ ├── ILdapConnectionProvider.cs │ ├── IPrincipalSearchService.cs │ ├── IUserResolverService.cs │ ├── IdPSearchServiceProvider.cs │ ├── IdentityProviderConfigurationService.cs │ ├── IdentityServerInitializationService.cs │ ├── IdentityUserPrincipalSearchService.cs │ ├── LdapConnectionProvider.cs │ ├── LdapProviderService.cs │ ├── LinuxCertificateService.cs │ ├── PrincipalQuery │ │ ├── ActiveDirectoryExactMatchQuery.cs │ │ ├── ActiveDirectoryQuery.cs │ │ ├── ActiveDirectoryWildcardQuery.cs │ │ ├── AzureExactMatchQuery.cs │ │ ├── AzureWildcardQuery.cs │ │ ├── IActiveDirectoryQuery.cs │ │ ├── IAzureQuery.cs │ │ └── IPrincipalQuery.cs │ ├── PrincipalSearchService.cs │ ├── UserProfileService.cs │ ├── UserResolverService.cs │ └── WindowsCertificateService.cs ├── Startup.cs ├── Validation │ ├── ApiResourceValidator.cs │ ├── ClientValidator.cs │ ├── ExternalProviderApiModelValidator.cs │ ├── IdentityResourceValidator.cs │ ├── ScopeValidator.cs │ ├── SearchRequestValidator.cs │ └── UserApiModelValidator.cs ├── Views │ ├── Account │ │ ├── LoggedOut.cshtml │ │ ├── Login.cshtml │ │ └── Logout.cshtml │ ├── Consent │ │ ├── Index.cshtml │ │ └── _ScopeListItem.cshtml │ ├── Grants │ │ └── Index.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── UnauthorizedError.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationSummary.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.json ├── compilerconfig.json ├── compilerconfig.json.defaults ├── scripts │ ├── CatalystDosIdentity.psd1 │ ├── CatalystDosIdentity.psm1 │ ├── Fabric.Identity.InstallPackage.nuspec │ ├── Fabric.Identity.InstallPackage.targets │ ├── Install-Discovery.ps1 │ ├── Install-IdPSS-Utilities.psm1 │ ├── Install-Identity-Dev.ps1 │ ├── Install-Identity-Discovery.ps1 │ ├── Install-Identity-Utilities.psm1 │ ├── Install-Identity-Windows.ps1 │ ├── Install-Identity.ps1 │ ├── Install-IdentityProviderSearchService.ps1 │ ├── Register-Identity-IdPSS.ps1 │ ├── Register.ps1 │ ├── add-docs-to-github-repo.sh │ ├── azuresettings.config │ ├── create-nuspec.sh │ ├── install.config │ ├── queue-build.sh │ ├── run-all-tests.sh │ ├── run-functional-tests.sh │ ├── run-integration-tests.sh │ ├── run-unit-tests.sh │ ├── set-environment-couchdb.sh │ ├── set-environment.sh │ ├── setup-samples.sh │ ├── start-identity.sh │ ├── tests │ │ ├── CatalystDosIdentity.tests.ps1 │ │ ├── CatalystDosIdentity │ │ │ └── CatalystDosIdentity.functional.tests.ps1 │ │ ├── Fabric.Identity.API.zip │ │ ├── Get-IdentityEncryptionCertificate.tests.ps1 │ │ ├── Get-IdentityFabricInstallerSecret.tests.ps1 │ │ ├── Get-IdentityRSAPrivateKey.tests.ps1 │ │ ├── Get-IdentityServiceIdPSSAzureSettings.tests.ps1 │ │ ├── Install-IdPSS-Utilities.tests.ps1 │ │ ├── Install-Identity-Discovery.tests.ps1 │ │ ├── Install-Identity-Utilities.tests.ps1 │ │ ├── New-IdentityEncryptionCertificate.tests.ps1 │ │ ├── Remove-IdentityEncryptionCertificate.tests.ps1 │ │ ├── Test-IdentityEncryptionCertificate.tests.ps1 │ │ ├── install.config │ │ ├── nopermission.config │ │ ├── readme.md │ │ ├── testAzure.config │ │ ├── testAzureAfterMigration.config │ │ ├── testInstall.config │ │ └── testInstallMalformed.config │ └── wait-for-couchdb.sh ├── tempkey.rsa ├── web.config └── wwwroot │ ├── css │ ├── error.css │ ├── site.css │ ├── site.less │ └── site.min.css │ ├── favicon.ico │ ├── icon.jpg │ ├── icon.png │ ├── images │ ├── HC_logo.svg │ ├── TriFlameMultiColored.svg │ └── login_bg.jpg │ ├── js │ └── signout-redirect.js │ └── lib │ ├── bootstrap │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ └── jquery │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── Fabric.Identity.Client ├── Extensions │ └── HttpResponseMessageExtensions.cs ├── Fabric.Identity.Client.csproj ├── Models │ ├── ApiResource.cs │ ├── ApiResourceRegistrationResponse.cs │ ├── Client.cs │ ├── ClientRegistrationResponse.cs │ ├── Error.cs │ ├── InnerError.cs │ └── Scope.cs └── RegistrationClient.cs ├── Fabric.Identity.FunctionalTests ├── package-lock.json ├── package.json └── tests │ └── identitytests.js ├── Fabric.Identity.IntegrationTests ├── ActiveDirectoryDataHelper.cs ├── ActiveDirectoryMockProxyExtensions.cs ├── AzureDirectoryMockExtensions.cs ├── ControllerTests │ ├── CouchDb │ │ ├── CouchDbApiResourceControllerTests.cs │ │ ├── CouchDbClientRegistrationTests.cs │ │ ├── CouchDbIdentityProvidersControllerTests.cs │ │ ├── CouchDbIdentityResourceControllerTests.cs │ │ ├── CouchDbUserLoginManagerTests.cs │ │ └── CouchDbUsersControllerTests.cs │ ├── InMemory │ │ ├── ApiResourceControllerTests.cs │ │ ├── ClientRegistrationTests.cs │ │ ├── DiscoveryDocumentTests.cs │ │ ├── IdentityProvidersControllerTests.cs │ │ ├── IdentityResourceControllerTests.cs │ │ ├── PrincipalsControllerActiveDirectoryTests.cs │ │ ├── PrincipalsControllerAzureADTests.cs │ │ ├── UserLoginManagerTests.cs │ │ └── UsersControllerTests.cs │ └── SqlServer │ │ ├── SqlServerApiResourceControllerTests.cs │ │ ├── SqlServerClientRegistrationTests.cs │ │ ├── SqlServerIdentityProvidersControllerTests.cs │ │ ├── SqlServerIdentityResourceControllerTests.cs │ │ ├── SqlServerUserLoginManagerTests.cs │ │ └── SqlServerUsersControllerTests.cs ├── Fabric.Identity.IntegrationTests.csproj ├── IntegrationTestsFixture.cs ├── ServiceTests │ ├── ActiveDirectoryProviderServiceTests.cs │ ├── AzureDirectoryProviderServiceGroupTests.cs │ ├── AzureDirectoryProviderServiceUserTests.cs │ ├── IdentityConfigurationProviderTests.cs │ ├── LdapProviderServiceTests.cs │ └── LdapTestHelper.cs ├── SuppressExecutionContextHandler.cs ├── app.config ├── appsettings.json └── xunit.runner.json ├── Fabric.Identity.PerformanceTests ├── Dockerfile ├── Fabric.Identity.Perf.jmx ├── appSettings.json ├── create-userproperties.sh └── entrypoint.sh ├── Fabric.Identity.SqlServer ├── Fabric.Identity.SqlServer.sqlproj ├── PublishProfiles │ ├── Fabric.Identity.SqlServer.publish.xml │ └── Fabric.Identity.SqlServerIncludingTables.publish.xml ├── Security │ └── IdentityServiceRole.sql ├── Storage │ ├── HCFabricIdentityData1.sql │ ├── HCFabricIdentityIndex1.sql │ ├── HCFabricIdentityLogFile1.sql │ └── HCFabricIdentityPrimary.sql └── Tables │ ├── ApiClaims.sql │ ├── ApiResources.sql │ ├── ApiScopeClaims.sql │ ├── ApiScopes.sql │ ├── ApiSecrets.sql │ ├── ClientClaims.sql │ ├── ClientCorsOrigins.sql │ ├── ClientGrantTypes.sql │ ├── ClientIdPRestrictions.sql │ ├── ClientPostLogoutRedirectUris.sql │ ├── ClientRedirectUris.sql │ ├── ClientScopes.sql │ ├── ClientSecrets.sql │ ├── Clients.sql │ ├── EventLogs.sql │ ├── IdentityClaims.sql │ ├── IdentityResources.sql │ ├── PersistedGrants.sql │ ├── UserClaims.sql │ ├── UserLogins.sql │ └── Users.sql ├── Fabric.Identity.UnitTests ├── BaseControllerTests.cs ├── ClassFixtures │ └── InMemoryUserDocumentFixture.cs ├── ClientRegistrationTests.cs ├── EntityAuditEventTests.cs ├── Fabric.Identity.UnitTests.csproj ├── FabricCorsPolicyProviderTests.cs ├── Helpers │ └── TestHelper.cs ├── IdentityProviderConfigurationServiceTests.cs ├── LinuxCertificateServiceTests.cs ├── Mocks │ ├── ExternalIdentityProviderMockExtensions.cs │ ├── MockHttpHandler.cs │ ├── TestIdentity.cs │ └── TestPrincipal.cs ├── ModelTests.cs ├── ReadAuthorizationHandlerTests.cs ├── RegistrationAuthorizationHandlerTests.cs ├── ResourceStoreTests.cs ├── SearchUsersAuthorizationHandlerTests.cs ├── SeparatedQueryStringValueProviderTests.cs ├── Services │ ├── ClaimsServiceTests.cs │ ├── DecryptionServiceTests.cs │ ├── DiscoveryServiceClientTests.cs │ └── GroupFilterServiceTests.cs ├── UserLoginManagerTests.cs ├── UserStoreTests.cs ├── Validation │ ├── DelegationGrantValidatorTests.cs │ └── StubTokenValidator.cs └── WindowsCertificateServiceTests.cs ├── Fabric.Identity.sln ├── README.md ├── docker-compose.ci.build.yml ├── docker-compose.dcproj ├── docker-compose.override.yml ├── docker-compose.yml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties └── license.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @HealthCatalyst/platform-fabric-services 2 | -------------------------------------------------------------------------------- /Fabric.Identity.API/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/.dockerignore -------------------------------------------------------------------------------- /Fabric.Identity.API/Authorization/BaseAuthorizationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Authorization/BaseAuthorizationHandler.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Authorization/IHaveAuthorizationClaimType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Authorization/IHaveAuthorizationClaimType.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Authorization/ReadAuthorizationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Authorization/ReadAuthorizationHandler.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Authorization/ReadScopeRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Authorization/ReadScopeRequirement.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Authorization/RegisteredClientThresholdRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Authorization/RegisteredClientThresholdRequirement.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Authorization/RegistrationAuthorizationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Authorization/RegistrationAuthorizationHandler.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Authorization/SearchUserAuthorizationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Authorization/SearchUserAuthorizationHandler.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Authorization/SearchUserScopeRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Authorization/SearchUserScopeRequirement.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Config.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Configuration/AppConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Configuration/AppConfiguration.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Configuration/ApplicationInsights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Configuration/ApplicationInsights.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Configuration/AzureActiveDirectoryClientSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Configuration/AzureActiveDirectoryClientSettings.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Configuration/AzureActiveDirectorySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Configuration/AzureActiveDirectorySettings.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Configuration/AzureClientApplicationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Configuration/AzureClientApplicationSettings.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Configuration/ExternalIdProviderSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Configuration/ExternalIdProviderSettings.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Configuration/FilterSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Configuration/FilterSettings.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Configuration/GroupFilterSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Configuration/GroupFilterSettings.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Configuration/HostingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Configuration/HostingOptions.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Configuration/IAppConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Configuration/IAppConfiguration.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Configuration/IdentityConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Configuration/IdentityConfigurationProvider.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Configuration/IdentityProviderSearchSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Configuration/IdentityProviderSearchSettings.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Configuration/LdapSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Configuration/LdapSettings.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Configuration/SigningCertificateSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Configuration/SigningCertificateSettings.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Connected Services/Application Insights/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Connected Services/Application Insights/ConnectedService.json -------------------------------------------------------------------------------- /Fabric.Identity.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Dockerfile -------------------------------------------------------------------------------- /Fabric.Identity.API/Documentation/ParamMetadataOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Documentation/ParamMetadataOperationFilter.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Documentation/PathVersionDocumentFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Documentation/PathVersionDocumentFilter.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Documentation/SecurityRequirementsOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Documentation/SecurityRequirementsOperationFilter.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Documentation/SetBodyParametersRequiredOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Documentation/SetBodyParametersRequiredOperationFilter.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Documentation/TagFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Documentation/TagFilter.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Documentation/VersionRemovalOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Documentation/VersionRemovalOperationFilter.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Documentation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Documentation/build.gradle -------------------------------------------------------------------------------- /Fabric.Identity.API/Documentation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Documentation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Fabric.Identity.API/Documentation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Documentation/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Fabric.Identity.API/Documentation/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Documentation/gradlew -------------------------------------------------------------------------------- /Fabric.Identity.API/Documentation/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Documentation/gradlew.bat -------------------------------------------------------------------------------- /Fabric.Identity.API/EventSinks/SerilogEventSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/EventSinks/SerilogEventSink.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Events/EntityAuditEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Events/EntityAuditEvent.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Events/EntityCreatedAuditEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Events/EntityCreatedAuditEvent.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Events/EntityDeletedAuditEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Events/EntityDeletedAuditEvent.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Events/EntityReadAuditEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Events/EntityReadAuditEvent.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Events/EntityUpdatedAuditEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Events/EntityUpdatedAuditEvent.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Events/FabricUserLoginSuccessEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Events/FabricUserLoginSuccessEvent.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Exceptions/AlreadyExistsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Exceptions/AlreadyExistsException.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Exceptions/AzureActiveDirectoryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Exceptions/AzureActiveDirectoryException.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Exceptions/BadRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Exceptions/BadRequestException.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Exceptions/DirectorySearchException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Exceptions/DirectorySearchException.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Exceptions/ExceptionMessageResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Exceptions/ExceptionMessageResources.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Exceptions/InvalidExternalIdentityProviderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Exceptions/InvalidExternalIdentityProviderException.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Exceptions/InvalidIssuerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Exceptions/InvalidIssuerException.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Exceptions/MissingIssuerClaimException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Exceptions/MissingIssuerClaimException.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Exceptions/MissingUserClaimException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Exceptions/MissingUserClaimException.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Exceptions/ResourceOperationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Exceptions/ResourceOperationException.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/ExtensionGrantValidators/DelegationGrantValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/ExtensionGrantValidators/DelegationGrantValidator.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Extensions/AuthenticationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Extensions/AuthenticationBuilderExtensions.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Extensions/IdentityServerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Extensions/IdentityServerBuilderExtensions.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Extensions/ProfileDataRequestContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Extensions/ProfileDataRequestContextExtensions.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Extensions/UtilityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Extensions/UtilityExtensions.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Extensions/WebHostBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Extensions/WebHostBuilderExtensions.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Fabric.Identity.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Fabric.Identity.API.csproj -------------------------------------------------------------------------------- /Fabric.Identity.API/FabricIdentityConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/FabricIdentityConstants.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/FabricIdentityEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/FabricIdentityEnums.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Infrastructure/CheckXForwardHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Infrastructure/CheckXForwardHeader.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Infrastructure/Decorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Infrastructure/Decorator.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Infrastructure/FabricCorsPolicyProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Infrastructure/FabricCorsPolicyProvider.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Infrastructure/HttpRequestMessageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Infrastructure/HttpRequestMessageFactory.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Infrastructure/IHttpRequestMessageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Infrastructure/IHttpRequestMessageFactory.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Infrastructure/MapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Infrastructure/MapperProfile.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Infrastructure/Monitoring/HealthCheckerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Infrastructure/Monitoring/HealthCheckerService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Infrastructure/Monitoring/IHealthCheckerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Infrastructure/Monitoring/IHealthCheckerService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Infrastructure/PolicyProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Infrastructure/PolicyProvider.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Infrastructure/QueryStringBinding/CommaSeparatedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Infrastructure/QueryStringBinding/CommaSeparatedAttribute.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Infrastructure/QueryStringBinding/CommaSeparatedQueryStringConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Infrastructure/QueryStringBinding/CommaSeparatedQueryStringConvention.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Infrastructure/QueryStringBinding/SeparatedQueryStringAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Infrastructure/QueryStringBinding/SeparatedQueryStringAttribute.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Infrastructure/QueryStringBinding/SeparatedQueryStringValueProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Infrastructure/QueryStringBinding/SeparatedQueryStringValueProvider.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Infrastructure/QueryStringBinding/SeparatedQueryStringValueProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Infrastructure/QueryStringBinding/SeparatedQueryStringValueProviderFactory.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Logging/LogFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Logging/LogFactory.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Management/ApiResourceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Management/ApiResourceController.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Management/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Management/BaseController.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Management/ClientController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Management/ClientController.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Management/IdentityProvidersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Management/IdentityProvidersController.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Management/IdentityResourceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Management/IdentityResourceController.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Management/PrincipalsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Management/PrincipalsController.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Management/UserLoginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Management/UserLoginManager.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Management/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Management/UsersController.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/ApiResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/ApiResource.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/AzureActiveDirectoryJwtClaimTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/AzureActiveDirectoryJwtClaimTypes.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/BaseResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/BaseResource.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/ClaimsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/ClaimsResult.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/Client.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/DirectoryEntryWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/DirectoryEntryWrapper.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/DiscoveryServiceApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/DiscoveryServiceApiModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/DiscoveryServiceResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/DiscoveryServiceResponseModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/Error.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/ErrorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/ErrorFactory.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/ExternalProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/ExternalProvider.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/ExternalProviderApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/ExternalProviderApiModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/FabricGraphApiGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/FabricGraphApiGroup.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/FabricGraphApiUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/FabricGraphApiUser.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/FabricGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/FabricGroup.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/FabricGroupApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/FabricGroupApiModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/FabricIdentityResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/FabricIdentityResources.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/FabricPrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/FabricPrincipal.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/FabricPrincipalApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/FabricPrincipalApiModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/IdentityResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/IdentityResource.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/IdentityStatusModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/IdentityStatusModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/ModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/ModelExtensions.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/PrincipalSearchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/PrincipalSearchRequest.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/SearchResultApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/SearchResultApiModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/TokenResponseWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/TokenResponseWrapper.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/User.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/UserApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/UserApiModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/UserLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/UserLogin.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Models/UserSearchParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Models/UserSearchParameter.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/BaseIdentityServerConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/BaseIdentityServerConfigurator.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/CouchDb/Configuration/CouchDbSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/CouchDb/Configuration/CouchDbSettings.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/CouchDb/Configuration/ICouchDbSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/CouchDb/Configuration/ICouchDbSettings.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/CouchDb/CouchDbEventSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/CouchDb/CouchDbEventSink.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/CouchDb/CouchDbSetupException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/CouchDb/CouchDbSetupException.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/CouchDb/DependencyInjection/CouchDbIdentityServerConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/CouchDb/DependencyInjection/CouchDbIdentityServerConfigurator.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/CouchDb/Services/AuditingDocumentDbService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/CouchDb/Services/AuditingDocumentDbService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/CouchDb/Services/CouchDbAccessService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/CouchDb/Services/CouchDbAccessService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/CouchDb/Services/CouchDbBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/CouchDb/Services/CouchDbBootstrapper.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/CouchDb/Stores/CouchDbApiResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/CouchDb/Stores/CouchDbApiResourceStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/CouchDb/Stores/CouchDbClientStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/CouchDb/Stores/CouchDbClientStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/CouchDb/Stores/CouchDbIdentityResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/CouchDb/Stores/CouchDbIdentityResourceStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/CouchDb/Stores/CouchDbPersistedGrantStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/CouchDb/Stores/CouchDbPersistedGrantStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/CouchDb/Stores/CouchDbResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/CouchDb/Stores/CouchDbResourceStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/CouchDb/Stores/CouchDbUserStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/CouchDb/Stores/CouchDbUserStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/IApiResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/IApiResourceStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/IClientManagementStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/IClientManagementStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/IDbBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/IDbBootstrapper.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/IDocumentDbService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/IDocumentDbService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/IIdentityResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/IIdentityResourceStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/IIdentityServerConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/IIdentityServerConfigurator.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/IPersistedGrantStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/IPersistedGrantStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/IResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/IResourceStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/IUserStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/IUserStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/InMemory/DependencyInjection/InMemoryIdentityServerConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/InMemory/DependencyInjection/InMemoryIdentityServerConfigurator.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/InMemory/Services/InMemoryDbBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/InMemory/Services/InMemoryDbBootstrapper.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/InMemory/Services/InMemoryDocumentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/InMemory/Services/InMemoryDocumentService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/InMemory/Stores/InMemoryApiResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/InMemory/Stores/InMemoryApiResourceStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/InMemory/Stores/InMemoryClientManagementStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/InMemory/Stores/InMemoryClientManagementStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/InMemory/Stores/InMemoryIdentityResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/InMemory/Stores/InMemoryIdentityResourceStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/InMemory/Stores/InMemoryPersistedGrantStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/InMemory/Stores/InMemoryPersistedGrantStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/InMemory/Stores/InMemoryResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/InMemory/Stores/InMemoryResourceStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/InMemory/Stores/InMemoryUserStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/InMemory/Stores/InMemoryUserStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Configuration/ConnectionStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Configuration/ConnectionStrings.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Configuration/IConnectionStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Configuration/IConnectionStrings.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/DependencyInjection/SqlServerIdentityServerConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/DependencyInjection/SqlServerIdentityServerConfigurator.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/ApiClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/ApiClaim.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/ApiResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/ApiResource.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/ApiScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/ApiScope.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/ApiScopeClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/ApiScopeClaim.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/ApiSecret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/ApiSecret.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/Client.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientClaim.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientCorsOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientCorsOrigin.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientGrantType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientGrantType.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientIdPrestriction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientIdPrestriction.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientPostLogoutRedirectUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientPostLogoutRedirectUri.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientRedirectUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientRedirectUri.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientScope.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientSecret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/ClientSecret.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/ISoftDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/ISoftDelete.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/ITrackable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/ITrackable.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/IdentityClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/IdentityClaim.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/IdentityResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/IdentityResource.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/PersistedGrant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/PersistedGrant.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/User.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/UserClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/UserClaim.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/EntityModels/UserLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/EntityModels/UserLogin.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Mappers/ApiResourceMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Mappers/ApiResourceMapper.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Mappers/ApiResourceMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Mappers/ApiResourceMapperProfile.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Mappers/ClientMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Mappers/ClientMapper.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Mappers/ClientMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Mappers/ClientMapperProfile.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Mappers/IdentityResourceMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Mappers/IdentityResourceMapper.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Mappers/IdentityResourceMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Mappers/IdentityResourceMapperProfile.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Mappers/PersistedGrantMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Mappers/PersistedGrantMapper.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Mappers/PersistedGrantMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Mappers/PersistedGrantMapperProfile.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Mappers/UserMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Mappers/UserMapper.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Mappers/UserMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Mappers/UserMapperProfile.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Scripts/create_identity_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Scripts/create_identity_database.sql -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Scripts/create_identity_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Scripts/create_identity_tables.sql -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Services/IIdentityDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Services/IIdentityDbContext.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Services/IdentityDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Services/IdentityDbContext.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Services/SqlServerBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Services/SqlServerBootstrapper.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Stores/SqlServerApiResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Stores/SqlServerApiResourceStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Stores/SqlServerBaseStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Stores/SqlServerBaseStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Stores/SqlServerClientStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Stores/SqlServerClientStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Stores/SqlServerIdentityResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Stores/SqlServerIdentityResourceStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Stores/SqlServerPersistedGrantStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Stores/SqlServerPersistedGrantStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Stores/SqlServerResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Stores/SqlServerResourceStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Persistence/SqlServer/Stores/SqlServerUserStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Persistence/SqlServer/Stores/SqlServerUserStore.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Program.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Account/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Account/AccountController.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Account/AccountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Account/AccountOptions.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Account/AccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Account/AccountService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Account/LoggedOutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Account/LoggedOutViewModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Account/LoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Account/LoginInputModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Account/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Account/LoginViewModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Account/LogoutInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Account/LogoutInputModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Account/LogoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Account/LogoutViewModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Consent/ConsentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Consent/ConsentController.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Consent/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Consent/ConsentInputModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Consent/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Consent/ConsentOptions.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Consent/ConsentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Consent/ConsentService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Consent/ConsentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Consent/ConsentViewModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Consent/ProcessConsentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Consent/ProcessConsentResult.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Consent/ScopeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Consent/ScopeViewModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Grants/GrantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Grants/GrantsController.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Grants/GrantsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Grants/GrantsViewModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Home/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Home/ErrorViewModel.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/Home/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/Home/HomeController.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Quickstart/TestUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Quickstart/TestUsers.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/README.md -------------------------------------------------------------------------------- /Fabric.Identity.API/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Resource.resx -------------------------------------------------------------------------------- /Fabric.Identity.API/SerializationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/SerializationSettings.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/ActiveDirectoryProviderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/ActiveDirectoryProviderService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/ActiveDirectoryProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/ActiveDirectoryProxy.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/Azure/AzureActiveDirectoryCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/Azure/AzureActiveDirectoryCacheService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/Azure/AzureActiveDirectoryClientCredentialsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/Azure/AzureActiveDirectoryClientCredentialsService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/Azure/AzureDirectoryProviderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/Azure/AzureDirectoryProviderService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/Azure/IAzureActiveDirectoryClientCredentialsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/Azure/IAzureActiveDirectoryClientCredentialsService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/Azure/IMicrosoftGraphApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/Azure/IMicrosoftGraphApi.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/Azure/MicrosoftGraphApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/Azure/MicrosoftGraphApi.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/ClaimsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/ClaimsService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/CorsPolicyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/CorsPolicyService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/DecryptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/DecryptionService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/DiscoveryServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/DiscoveryServiceClient.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/ExternalIdentityProviderServiceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/ExternalIdentityProviderServiceResolver.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/GroupFilterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/GroupFilterService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/IActiveDirectoryProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/IActiveDirectoryProxy.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/ICertificateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/ICertificateService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/IClaimsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/IClaimsService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/IExternalIdentityProviderSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/IExternalIdentityProviderSearchService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/IExternalIdentityProviderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/IExternalIdentityProviderService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/IExternalIdentityProviderServiceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/IExternalIdentityProviderServiceResolver.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/IIdentityProviderConfigurationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/IIdentityProviderConfigurationService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/ILdapConnectionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/ILdapConnectionProvider.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/IPrincipalSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/IPrincipalSearchService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/IUserResolverService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/IUserResolverService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/IdPSearchServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/IdPSearchServiceProvider.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/IdentityProviderConfigurationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/IdentityProviderConfigurationService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/IdentityServerInitializationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/IdentityServerInitializationService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/IdentityUserPrincipalSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/IdentityUserPrincipalSearchService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/LdapConnectionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/LdapConnectionProvider.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/LdapProviderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/LdapProviderService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/LinuxCertificateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/LinuxCertificateService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/PrincipalQuery/ActiveDirectoryExactMatchQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/PrincipalQuery/ActiveDirectoryExactMatchQuery.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/PrincipalQuery/ActiveDirectoryQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/PrincipalQuery/ActiveDirectoryQuery.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/PrincipalQuery/ActiveDirectoryWildcardQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/PrincipalQuery/ActiveDirectoryWildcardQuery.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/PrincipalQuery/AzureExactMatchQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/PrincipalQuery/AzureExactMatchQuery.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/PrincipalQuery/AzureWildcardQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/PrincipalQuery/AzureWildcardQuery.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/PrincipalQuery/IActiveDirectoryQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/PrincipalQuery/IActiveDirectoryQuery.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/PrincipalQuery/IAzureQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/PrincipalQuery/IAzureQuery.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/PrincipalQuery/IPrincipalQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/PrincipalQuery/IPrincipalQuery.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/PrincipalSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/PrincipalSearchService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/UserProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/UserProfileService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/UserResolverService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/UserResolverService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Services/WindowsCertificateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Services/WindowsCertificateService.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Startup.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Validation/ApiResourceValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Validation/ApiResourceValidator.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Validation/ClientValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Validation/ClientValidator.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Validation/ExternalProviderApiModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Validation/ExternalProviderApiModelValidator.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Validation/IdentityResourceValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Validation/IdentityResourceValidator.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Validation/ScopeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Validation/ScopeValidator.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Validation/SearchRequestValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Validation/SearchRequestValidator.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Validation/UserApiModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Validation/UserApiModelValidator.cs -------------------------------------------------------------------------------- /Fabric.Identity.API/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /Fabric.Identity.API/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /Fabric.Identity.API/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Views/Account/Logout.cshtml -------------------------------------------------------------------------------- /Fabric.Identity.API/Views/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Views/Consent/Index.cshtml -------------------------------------------------------------------------------- /Fabric.Identity.API/Views/Consent/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Views/Consent/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /Fabric.Identity.API/Views/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Views/Grants/Index.cshtml -------------------------------------------------------------------------------- /Fabric.Identity.API/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Fabric.Identity.API/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Fabric.Identity.API/Views/Shared/UnauthorizedError.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Views/Shared/UnauthorizedError.cshtml -------------------------------------------------------------------------------- /Fabric.Identity.API/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Fabric.Identity.API/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Views/Shared/_ValidationSummary.cshtml -------------------------------------------------------------------------------- /Fabric.Identity.API/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Fabric.Identity.API/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Fabric.Identity.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/appsettings.json -------------------------------------------------------------------------------- /Fabric.Identity.API/compilerconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/compilerconfig.json -------------------------------------------------------------------------------- /Fabric.Identity.API/compilerconfig.json.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/compilerconfig.json.defaults -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/CatalystDosIdentity.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/CatalystDosIdentity.psd1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/CatalystDosIdentity.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/CatalystDosIdentity.psm1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/Fabric.Identity.InstallPackage.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/Fabric.Identity.InstallPackage.nuspec -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/Fabric.Identity.InstallPackage.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/Fabric.Identity.InstallPackage.targets -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/Install-Discovery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/Install-Discovery.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/Install-IdPSS-Utilities.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/Install-IdPSS-Utilities.psm1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/Install-Identity-Dev.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/Install-Identity-Dev.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/Install-Identity-Discovery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/Install-Identity-Discovery.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/Install-Identity-Utilities.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/Install-Identity-Utilities.psm1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/Install-Identity-Windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/Install-Identity-Windows.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/Install-Identity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/Install-Identity.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/Install-IdentityProviderSearchService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/Install-IdentityProviderSearchService.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/Register-Identity-IdPSS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/Register-Identity-IdPSS.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/Register.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/Register.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/add-docs-to-github-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/add-docs-to-github-repo.sh -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/azuresettings.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/azuresettings.config -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/create-nuspec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/create-nuspec.sh -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/install.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/install.config -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/queue-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/queue-build.sh -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/run-all-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/run-all-tests.sh -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/run-functional-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/run-functional-tests.sh -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/run-integration-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/run-integration-tests.sh -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/run-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/run-unit-tests.sh -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/set-environment-couchdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/set-environment-couchdb.sh -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/set-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/set-environment.sh -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/setup-samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/setup-samples.sh -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/start-identity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/start-identity.sh -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/CatalystDosIdentity.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/CatalystDosIdentity.tests.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/CatalystDosIdentity/CatalystDosIdentity.functional.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/CatalystDosIdentity/CatalystDosIdentity.functional.tests.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/Fabric.Identity.API.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/Fabric.Identity.API.zip -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/Get-IdentityEncryptionCertificate.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/Get-IdentityEncryptionCertificate.tests.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/Get-IdentityFabricInstallerSecret.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/Get-IdentityFabricInstallerSecret.tests.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/Get-IdentityRSAPrivateKey.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/Get-IdentityRSAPrivateKey.tests.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/Get-IdentityServiceIdPSSAzureSettings.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/Get-IdentityServiceIdPSSAzureSettings.tests.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/Install-IdPSS-Utilities.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/Install-IdPSS-Utilities.tests.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/Install-Identity-Discovery.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/Install-Identity-Discovery.tests.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/Install-Identity-Utilities.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/Install-Identity-Utilities.tests.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/New-IdentityEncryptionCertificate.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/New-IdentityEncryptionCertificate.tests.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/Remove-IdentityEncryptionCertificate.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/Remove-IdentityEncryptionCertificate.tests.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/Test-IdentityEncryptionCertificate.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/Test-IdentityEncryptionCertificate.tests.ps1 -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/install.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/install.config -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/nopermission.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/nopermission.config -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/readme.md -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/testAzure.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/testAzure.config -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/testAzureAfterMigration.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/testAzureAfterMigration.config -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/testInstall.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/testInstall.config -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/tests/testInstallMalformed.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/tests/testInstallMalformed.config -------------------------------------------------------------------------------- /Fabric.Identity.API/scripts/wait-for-couchdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/scripts/wait-for-couchdb.sh -------------------------------------------------------------------------------- /Fabric.Identity.API/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/tempkey.rsa -------------------------------------------------------------------------------- /Fabric.Identity.API/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/web.config -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/css/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/css/error.css -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/css/site.css -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/css/site.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/css/site.less -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/icon.jpg -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/icon.png -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/images/HC_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/images/HC_logo.svg -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/images/TriFlameMultiColored.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/images/TriFlameMultiColored.svg -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/images/login_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/images/login_bg.jpg -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/js/signout-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/js/signout-redirect.js -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/lib/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/lib/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/lib/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/lib/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/lib/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/lib/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/lib/jquery/jquery.js -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /Fabric.Identity.API/wwwroot/lib/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.API/wwwroot/lib/jquery/jquery.min.map -------------------------------------------------------------------------------- /Fabric.Identity.Client/Extensions/HttpResponseMessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.Client/Extensions/HttpResponseMessageExtensions.cs -------------------------------------------------------------------------------- /Fabric.Identity.Client/Fabric.Identity.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.Client/Fabric.Identity.Client.csproj -------------------------------------------------------------------------------- /Fabric.Identity.Client/Models/ApiResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.Client/Models/ApiResource.cs -------------------------------------------------------------------------------- /Fabric.Identity.Client/Models/ApiResourceRegistrationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.Client/Models/ApiResourceRegistrationResponse.cs -------------------------------------------------------------------------------- /Fabric.Identity.Client/Models/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.Client/Models/Client.cs -------------------------------------------------------------------------------- /Fabric.Identity.Client/Models/ClientRegistrationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.Client/Models/ClientRegistrationResponse.cs -------------------------------------------------------------------------------- /Fabric.Identity.Client/Models/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.Client/Models/Error.cs -------------------------------------------------------------------------------- /Fabric.Identity.Client/Models/InnerError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.Client/Models/InnerError.cs -------------------------------------------------------------------------------- /Fabric.Identity.Client/Models/Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.Client/Models/Scope.cs -------------------------------------------------------------------------------- /Fabric.Identity.Client/RegistrationClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.Client/RegistrationClient.cs -------------------------------------------------------------------------------- /Fabric.Identity.FunctionalTests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.FunctionalTests/package-lock.json -------------------------------------------------------------------------------- /Fabric.Identity.FunctionalTests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.FunctionalTests/package.json -------------------------------------------------------------------------------- /Fabric.Identity.FunctionalTests/tests/identitytests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.FunctionalTests/tests/identitytests.js -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ActiveDirectoryDataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ActiveDirectoryDataHelper.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ActiveDirectoryMockProxyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ActiveDirectoryMockProxyExtensions.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/AzureDirectoryMockExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/AzureDirectoryMockExtensions.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/CouchDb/CouchDbApiResourceControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/CouchDb/CouchDbApiResourceControllerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/CouchDb/CouchDbClientRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/CouchDb/CouchDbClientRegistrationTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/CouchDb/CouchDbIdentityProvidersControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/CouchDb/CouchDbIdentityProvidersControllerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/CouchDb/CouchDbIdentityResourceControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/CouchDb/CouchDbIdentityResourceControllerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/CouchDb/CouchDbUserLoginManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/CouchDb/CouchDbUserLoginManagerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/CouchDb/CouchDbUsersControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/CouchDb/CouchDbUsersControllerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/InMemory/ApiResourceControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/InMemory/ApiResourceControllerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/InMemory/ClientRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/InMemory/ClientRegistrationTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/InMemory/DiscoveryDocumentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/InMemory/DiscoveryDocumentTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/InMemory/IdentityProvidersControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/InMemory/IdentityProvidersControllerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/InMemory/IdentityResourceControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/InMemory/IdentityResourceControllerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/InMemory/PrincipalsControllerActiveDirectoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/InMemory/PrincipalsControllerActiveDirectoryTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/InMemory/PrincipalsControllerAzureADTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/InMemory/PrincipalsControllerAzureADTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/InMemory/UserLoginManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/InMemory/UserLoginManagerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/InMemory/UsersControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/InMemory/UsersControllerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/SqlServer/SqlServerApiResourceControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/SqlServer/SqlServerApiResourceControllerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/SqlServer/SqlServerClientRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/SqlServer/SqlServerClientRegistrationTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/SqlServer/SqlServerIdentityProvidersControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/SqlServer/SqlServerIdentityProvidersControllerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/SqlServer/SqlServerIdentityResourceControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/SqlServer/SqlServerIdentityResourceControllerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/SqlServer/SqlServerUserLoginManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/SqlServer/SqlServerUserLoginManagerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ControllerTests/SqlServer/SqlServerUsersControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ControllerTests/SqlServer/SqlServerUsersControllerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/Fabric.Identity.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/Fabric.Identity.IntegrationTests.csproj -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/IntegrationTestsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/IntegrationTestsFixture.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ServiceTests/ActiveDirectoryProviderServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ServiceTests/ActiveDirectoryProviderServiceTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ServiceTests/AzureDirectoryProviderServiceGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ServiceTests/AzureDirectoryProviderServiceGroupTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ServiceTests/AzureDirectoryProviderServiceUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ServiceTests/AzureDirectoryProviderServiceUserTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ServiceTests/IdentityConfigurationProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ServiceTests/IdentityConfigurationProviderTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ServiceTests/LdapProviderServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ServiceTests/LdapProviderServiceTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/ServiceTests/LdapTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/ServiceTests/LdapTestHelper.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/SuppressExecutionContextHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/SuppressExecutionContextHandler.cs -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/app.config -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/appsettings.json -------------------------------------------------------------------------------- /Fabric.Identity.IntegrationTests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.IntegrationTests/xunit.runner.json -------------------------------------------------------------------------------- /Fabric.Identity.PerformanceTests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.PerformanceTests/Dockerfile -------------------------------------------------------------------------------- /Fabric.Identity.PerformanceTests/Fabric.Identity.Perf.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.PerformanceTests/Fabric.Identity.Perf.jmx -------------------------------------------------------------------------------- /Fabric.Identity.PerformanceTests/appSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.PerformanceTests/appSettings.json -------------------------------------------------------------------------------- /Fabric.Identity.PerformanceTests/create-userproperties.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.PerformanceTests/create-userproperties.sh -------------------------------------------------------------------------------- /Fabric.Identity.PerformanceTests/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.PerformanceTests/entrypoint.sh -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Fabric.Identity.SqlServer.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Fabric.Identity.SqlServer.sqlproj -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/PublishProfiles/Fabric.Identity.SqlServer.publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/PublishProfiles/Fabric.Identity.SqlServer.publish.xml -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/PublishProfiles/Fabric.Identity.SqlServerIncludingTables.publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/PublishProfiles/Fabric.Identity.SqlServerIncludingTables.publish.xml -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Security/IdentityServiceRole.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Security/IdentityServiceRole.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Storage/HCFabricIdentityData1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Storage/HCFabricIdentityData1.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Storage/HCFabricIdentityIndex1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Storage/HCFabricIdentityIndex1.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Storage/HCFabricIdentityLogFile1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Storage/HCFabricIdentityLogFile1.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Storage/HCFabricIdentityPrimary.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Storage/HCFabricIdentityPrimary.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/ApiClaims.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/ApiClaims.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/ApiResources.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/ApiResources.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/ApiScopeClaims.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/ApiScopeClaims.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/ApiScopes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/ApiScopes.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/ApiSecrets.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/ApiSecrets.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/ClientClaims.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/ClientClaims.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/ClientCorsOrigins.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/ClientCorsOrigins.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/ClientGrantTypes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/ClientGrantTypes.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/ClientIdPRestrictions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/ClientIdPRestrictions.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/ClientPostLogoutRedirectUris.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/ClientPostLogoutRedirectUris.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/ClientRedirectUris.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/ClientRedirectUris.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/ClientScopes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/ClientScopes.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/ClientSecrets.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/ClientSecrets.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/Clients.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/Clients.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/EventLogs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/EventLogs.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/IdentityClaims.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/IdentityClaims.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/IdentityResources.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/IdentityResources.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/PersistedGrants.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/PersistedGrants.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/UserClaims.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/UserClaims.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/UserLogins.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/UserLogins.sql -------------------------------------------------------------------------------- /Fabric.Identity.SqlServer/Tables/Users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.SqlServer/Tables/Users.sql -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/BaseControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/BaseControllerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/ClassFixtures/InMemoryUserDocumentFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/ClassFixtures/InMemoryUserDocumentFixture.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/ClientRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/ClientRegistrationTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/EntityAuditEventTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/EntityAuditEventTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/Fabric.Identity.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/Fabric.Identity.UnitTests.csproj -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/FabricCorsPolicyProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/FabricCorsPolicyProviderTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/Helpers/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/Helpers/TestHelper.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/IdentityProviderConfigurationServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/IdentityProviderConfigurationServiceTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/LinuxCertificateServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/LinuxCertificateServiceTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/Mocks/ExternalIdentityProviderMockExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/Mocks/ExternalIdentityProviderMockExtensions.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/Mocks/MockHttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/Mocks/MockHttpHandler.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/Mocks/TestIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/Mocks/TestIdentity.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/Mocks/TestPrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/Mocks/TestPrincipal.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/ModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/ModelTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/ReadAuthorizationHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/ReadAuthorizationHandlerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/RegistrationAuthorizationHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/RegistrationAuthorizationHandlerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/ResourceStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/ResourceStoreTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/SearchUsersAuthorizationHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/SearchUsersAuthorizationHandlerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/SeparatedQueryStringValueProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/SeparatedQueryStringValueProviderTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/Services/ClaimsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/Services/ClaimsServiceTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/Services/DecryptionServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/Services/DecryptionServiceTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/Services/DiscoveryServiceClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/Services/DiscoveryServiceClientTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/Services/GroupFilterServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/Services/GroupFilterServiceTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/UserLoginManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/UserLoginManagerTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/UserStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/UserStoreTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/Validation/DelegationGrantValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/Validation/DelegationGrantValidatorTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/Validation/StubTokenValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/Validation/StubTokenValidator.cs -------------------------------------------------------------------------------- /Fabric.Identity.UnitTests/WindowsCertificateServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.UnitTests/WindowsCertificateServiceTests.cs -------------------------------------------------------------------------------- /Fabric.Identity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/Fabric.Identity.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.ci.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/docker-compose.ci.build.yml -------------------------------------------------------------------------------- /docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/docker-compose.dcproj -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HealthCatalyst/Fabric.Identity/HEAD/license.txt --------------------------------------------------------------------------------