├── .config └── dotnet-tools.json ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── pull-request.yml │ └── release.yml ├── .gitignore ├── All.sln ├── CODE_OF_CONDUCT.md ├── Directory.Packages.props ├── LICENSE ├── Publish-UI.ps1 ├── Publish-UI.sh ├── README.md ├── env ├── id.env ├── id_dev.env ├── id_stage.env └── idops.env ├── global.json ├── nuget.config ├── pull-request-build.yml ├── release-build.yml ├── src ├── Directory.Build.props ├── IdentityServer │ ├── Messaging.Azure │ │ ├── EventHubSender.cs │ │ ├── Extensions │ │ │ └── AzureServiceBusIdOpsBuilderExtensions.cs │ │ ├── Messaging.Azure.csproj │ │ └── Options │ │ │ ├── AzureOptions.cs │ │ │ ├── AzureServiceBusOptions.cs │ │ │ └── EventHubOptions.cs │ ├── Messaging.RabbitMQ │ │ ├── Messaging.RabbitMQ.csproj │ │ ├── RabbitMqIdOpsBuilderExtensions.cs │ │ └── RabbitMqOptions.cs │ ├── samples │ │ └── Server │ │ │ ├── ActivityEnricherSink.cs │ │ │ ├── Controllers │ │ │ └── TestController.cs │ │ │ ├── DataSeeding │ │ │ ├── DataSeeder.cs │ │ │ └── SampleData.cs │ │ │ ├── IdentityServer.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Quickstart │ │ │ ├── Account │ │ │ │ ├── AccountController.cs │ │ │ │ ├── AccountOptions.cs │ │ │ │ ├── ExternalController.cs │ │ │ │ ├── ExternalProvider.cs │ │ │ │ ├── LoggedOutViewModel.cs │ │ │ │ ├── LoginInputModel.cs │ │ │ │ ├── LoginViewModel.cs │ │ │ │ ├── LogoutInputModel.cs │ │ │ │ ├── LogoutViewModel.cs │ │ │ │ └── RedirectViewModel.cs │ │ │ ├── Consent │ │ │ │ ├── ConsentController.cs │ │ │ │ ├── ConsentInputModel.cs │ │ │ │ ├── ConsentOptions.cs │ │ │ │ ├── ConsentViewModel.cs │ │ │ │ ├── ProcessConsentResult.cs │ │ │ │ └── ScopeViewModel.cs │ │ │ ├── Device │ │ │ │ ├── DeviceAuthorizationInputModel.cs │ │ │ │ ├── DeviceAuthorizationViewModel.cs │ │ │ │ └── DeviceController.cs │ │ │ ├── Diagnostics │ │ │ │ ├── DiagnosticsController.cs │ │ │ │ └── DiagnosticsViewModel.cs │ │ │ ├── Extensions.cs │ │ │ ├── Grants │ │ │ │ ├── GrantsController.cs │ │ │ │ └── GrantsViewModel.cs │ │ │ ├── Home │ │ │ │ ├── ErrorViewModel.cs │ │ │ │ └── HomeController.cs │ │ │ ├── SecurityHeadersAttribute.cs │ │ │ └── TestUsers.cs │ │ │ ├── SameSiteCookieExtensions.cs │ │ │ ├── SampleProfileService.cs │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ ├── Account │ │ │ │ ├── AccessDenied.cshtml │ │ │ │ ├── LoggedOut.cshtml │ │ │ │ ├── Login.cshtml │ │ │ │ └── Logout.cshtml │ │ │ ├── Consent │ │ │ │ └── Index.cshtml │ │ │ ├── Device │ │ │ │ ├── Success.cshtml │ │ │ │ ├── UserCodeCapture.cshtml │ │ │ │ └── UserCodeConfirmation.cshtml │ │ │ ├── Diagnostics │ │ │ │ └── Index.cshtml │ │ │ ├── Grants │ │ │ │ └── Index.cshtml │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── Redirect.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _Nav.cshtml │ │ │ │ ├── _ScopeListItem.cshtml │ │ │ │ └── _ValidationSummary.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.json │ │ │ ├── keys │ │ │ ├── is-signing-key-55C7DEBA3622A78F8F2FC93F0AC31B23.json │ │ │ └── is-signing-key-D3BAC7735FEF0188BDA727756218DCD2.json │ │ │ └── sign_key.jwk │ ├── src │ │ ├── Abstractions │ │ │ ├── Abstractions.csproj │ │ │ ├── DataConnector │ │ │ │ ├── IUserDataConnector.cs │ │ │ │ ├── IUserDataConnectorService.cs │ │ │ │ ├── UserDataConnectorCallerContext.cs │ │ │ │ ├── UserDataConnectorData.cs │ │ │ │ ├── UserDataConnectorOptionsExtensions.cs │ │ │ │ └── UserDataConnectorResult.cs │ │ │ ├── Events │ │ │ │ ├── CorsOriginNotAllowedEvent.cs │ │ │ │ ├── EventIds.cs │ │ │ │ ├── IIdOpsEventSink.cs │ │ │ │ ├── UserDataConnectorFailedEvent.cs │ │ │ │ └── UserDataConnectorSuccessEvent.cs │ │ │ ├── Exceptions │ │ │ │ └── IdOpsConfigurationException.cs │ │ │ ├── IEventSenderWorker.cs │ │ │ ├── IIdOpsIdentityServerBuilder.cs │ │ │ ├── IUserClaimsRulesService.cs │ │ │ ├── Messages │ │ │ │ ├── IdentityEventMessage.cs │ │ │ │ └── PublishResourceMessage.cs │ │ │ ├── Model │ │ │ │ └── UpdateResourceResult.cs │ │ │ ├── Stores │ │ │ │ ├── IApiResourceRepository.cs │ │ │ │ ├── IApiScopeRepository.cs │ │ │ │ ├── IClientRepository.cs │ │ │ │ ├── IIdentityResourceRepository.cs │ │ │ │ ├── IPersistedGrantRepository.cs │ │ │ │ ├── IPersonalAccessTokenRepository.cs │ │ │ │ └── IUserClaimRuleRepository.cs │ │ │ └── Wellknown.cs │ │ ├── Directory.Build.props │ │ ├── Hashing │ │ │ ├── HashAlgorithmResolver.cs │ │ │ ├── HasherServiceCollectionExtensions.cs │ │ │ ├── Hashing.csproj │ │ │ ├── IHashAlgorithm.cs │ │ │ ├── IHashAlgorithmResolver.cs │ │ │ ├── IPasswordProvider.cs │ │ │ ├── PasswordProvider.cs │ │ │ ├── Pbkdf2Algorithm.cs │ │ │ ├── Pbkdf2HashAlgorithm.cs │ │ │ └── SshaHashAlgorithm.cs │ │ ├── IdentityServer.Core │ │ │ ├── ClaimsExtensions.cs │ │ │ ├── Core.csproj │ │ │ ├── DataConnector │ │ │ │ ├── ClaimsRulesDataConnector.cs │ │ │ │ ├── UserDataConnectorService.cs │ │ │ │ └── UserDataConnectorServiceCollectionExtensions.cs │ │ │ ├── Events │ │ │ │ ├── BusEventSender.cs │ │ │ │ ├── BusEventSink.cs │ │ │ │ ├── EventExtensions.cs │ │ │ │ ├── IdOpsEventIds.cs │ │ │ │ ├── IdOpsEventSink.cs │ │ │ │ ├── IpValidationFailedEvent.cs │ │ │ │ ├── PersonalAccessTokenValidationFailedEvent.cs │ │ │ │ └── PersonalAccessTokenValidationSuccessEvent.cs │ │ │ ├── Extensions │ │ │ │ ├── HttpContextExtensions.cs │ │ │ │ └── TaskExtensions.cs │ │ │ ├── IdOpsActivity.cs │ │ │ ├── IdOpsMeters.cs │ │ │ ├── IdentityServerBuilderExtensions.cs │ │ │ ├── IpAllowList │ │ │ │ ├── ClientIdExtractor.cs │ │ │ │ ├── InternalIpFilterConfiguration.cs │ │ │ │ ├── IpAllowListMiddleware.cs │ │ │ │ └── IpAllowListValidator.cs │ │ │ ├── LoggingExtensions.cs │ │ │ ├── PersonalAccessToken │ │ │ │ ├── IPersonalAccessTokenValidator.cs │ │ │ │ ├── PersonalAccessTokenGrantValidator.cs │ │ │ │ ├── PersonalAccessTokenMatch.cs │ │ │ │ ├── PersonalAccessTokenValidationContext.cs │ │ │ │ ├── PersonalAccessTokenValidationResult.cs │ │ │ │ ├── PersonalAccessTokenValidator.cs │ │ │ │ ├── Sources │ │ │ │ │ ├── IPersonalAccessTokenSource.cs │ │ │ │ │ └── LocalAccessTokenSource.cs │ │ │ │ └── Validators │ │ │ │ │ ├── LocalPersonalAccessTokenAuthenticationValidator.cs │ │ │ │ │ └── PersonalAccessTokenAuthenticationValidator.cs │ │ │ ├── ResourceUpdate │ │ │ │ ├── IResourceConsumer.cs │ │ │ │ ├── IResourceMessageConsumer.cs │ │ │ │ ├── IResourceUpdateHandler.cs │ │ │ │ ├── ResourceConsumer.cs │ │ │ │ ├── ResourceMessageConsumer.cs │ │ │ │ ├── ResourceUpdateHandler.cs │ │ │ │ └── UpdateResourceConsumer.cs │ │ │ ├── Resources │ │ │ │ ├── ApiResource │ │ │ │ │ ├── ApiResourceMessageConsumer.cs │ │ │ │ │ └── ApiResourceServiceCollectionExtensions.cs │ │ │ │ ├── ApiScope │ │ │ │ │ ├── ApiScopeMessageConsumer.cs │ │ │ │ │ └── ApiScopeServiceCollectionExtensions.cs │ │ │ │ ├── Client │ │ │ │ │ ├── ClientMessageConsumer.cs │ │ │ │ │ └── ClientServiceCollectionExtensions.cs │ │ │ │ ├── IdentityResource │ │ │ │ │ ├── IdentityResourceMessageConsumer.cs │ │ │ │ │ └── IdentityResourceServiceCollectionExtensions.cs │ │ │ │ ├── PersonalAccessToken │ │ │ │ │ ├── PersonalAccessTokenMessageConsumer.cs │ │ │ │ │ └── PersonalAccessTokenServiceCollectionExtensions.cs │ │ │ │ ├── ResourceConsumerServiceCollectionExtensions.cs │ │ │ │ └── UserClaimRule │ │ │ │ │ ├── UserClaimRuleResourceMessageConsumer.cs │ │ │ │ │ └── UserClaimRuleServiceCollectionExtensions.cs │ │ │ ├── Services │ │ │ │ ├── CorsPolicyService.cs │ │ │ │ └── UserClaimsRulesService.cs │ │ │ ├── Store │ │ │ │ ├── ClientStore.cs │ │ │ │ ├── PersistedGrantStore.cs │ │ │ │ └── ResourceStore.cs │ │ │ └── Telemetry.cs │ │ ├── IdentityServer.Storage │ │ │ ├── ClaimExtension.cs │ │ │ ├── ClaimRuleMatch.cs │ │ │ ├── ClaimRuleMatchMode.cs │ │ │ ├── ConnectorProfileType.cs │ │ │ ├── DataConnectorOptions.cs │ │ │ ├── DataConnectorProperty.cs │ │ │ ├── EnabledProvider.cs │ │ │ ├── IdOpsApiResource.cs │ │ │ ├── IdOpsApiScope.cs │ │ │ ├── IdOpsClient.cs │ │ │ ├── IdOpsHashedToken.cs │ │ │ ├── IdOpsIdentityResource.cs │ │ │ ├── IdOpsPersonalAccessToken.cs │ │ │ ├── IdentityServer.Storage.csproj │ │ │ ├── IpAddressFilter.cs │ │ │ ├── IpFilterPolicy.cs │ │ │ ├── PublishSource.cs │ │ │ ├── ResourceTypes.cs │ │ │ ├── UserClaim.cs │ │ │ └── UserClaimRule.cs │ │ └── Store.Mongo │ │ │ ├── ApiResourceRepository.cs │ │ │ ├── ApiScopeRepository.cs │ │ │ ├── ClientRepository.cs │ │ │ ├── CollectionNames.cs │ │ │ ├── Configuration │ │ │ ├── ApiResourceCollectionConfiguration.cs │ │ │ ├── ApiScopeCollectionConfiguration.cs │ │ │ ├── ClientCollectionConfiguration.cs │ │ │ ├── IdentityResourceCollectionConfiguration.cs │ │ │ ├── PersistedGrantCollectionConfiguration.cs │ │ │ ├── PersonalAccessTokenCollectionConfiguration.cs │ │ │ ├── UserClaimRuleCollectionConfiguration.cs │ │ │ ├── UserDataConnectorDataCollectionConfiguration.cs │ │ │ └── WellKnownPatFields.cs │ │ │ ├── IIdentityStoreDbContext.cs │ │ │ ├── IdOpsMongoOptions.cs │ │ │ ├── IdentityResourceRepository.cs │ │ │ ├── IdentityStoreDbContext.cs │ │ │ ├── MongoCollations.cs │ │ │ ├── MongoStoreServiceCollectionExtensions.cs │ │ │ ├── PersistedGrantRepository.cs │ │ │ ├── PersonalAccessTokenRepository.cs │ │ │ ├── ResourceUpdater.cs │ │ │ ├── Store.Mongo.csproj │ │ │ └── UserClaimRuleRepository.cs │ └── test │ │ ├── IdentityServer.Core.Tests │ │ ├── IdentityServer.Core.Tests.csproj │ │ ├── IpAllowList │ │ │ ├── ClientIdExtractorTests.cs │ │ │ ├── InternalIpFilterConfigurationTests.cs │ │ │ └── IpAllowListValidatorTests.cs │ │ ├── PersonalAccessToken │ │ │ ├── HashAlgorithmResolverTests.cs │ │ │ ├── HashAlgorithmServiceCollectionExtensionsTests.cs │ │ │ ├── LocalPersonalAccessTokenAuthenticationValidatorTests.cs │ │ │ ├── Pbkdf2HashAlgorithmTests.cs │ │ │ ├── PersonalAccessTokenValidatorTests.cs │ │ │ └── SshaHashAlgorithmTests.cs │ │ ├── UserClaimsRulesServiceTests.cs │ │ └── __snapshots__ │ │ │ └── UserClaimsRulesServiceTests.GetRulesByClient_ByTenantAndClientId_ReturnsSameTenantAndClientIdAndWithNullClient.snap │ │ └── IdentityServer.Store.Mongo.Tests │ │ ├── ClientRepositoryTests.cs │ │ ├── DataAccessCollectionFixture.cs │ │ ├── IdentityServer.Store.Mongo.Tests.csproj │ │ ├── LoginDbContextTests.cs │ │ ├── PersistedGrantRepositoryTests.cs │ │ ├── PersonalAccessTokenRepositoryTests.cs │ │ ├── RepositoryTest.cs │ │ └── __snapshots__ │ │ ├── PersistedGrantRepositoryTests.GetByFilter_SubjectId_Found.snap │ │ ├── PersistedGrantRepositoryTests.Get_Found.snap │ │ ├── PersistedGrantRepositoryTests.Insert_GrantFound.snap │ │ ├── PersistedGrantRepositoryTests.Save_GrantFound.snap │ │ ├── PersistedGrantRepositoryTests.Save_WhenExist_Updated.snap │ │ ├── PersonalAccessTokenRepositoryTests.GetByUserNameAndToken_MatchSnapshot.snap │ │ └── UserRoleRepositoryTests.GetAll_MatchSnapshot.snap ├── Server │ ├── src │ │ ├── Abstractions │ │ │ ├── Abstractions.csproj │ │ │ ├── Configuration │ │ │ │ ├── IdOpsServerBuilder.cs │ │ │ │ └── IdOpsServerOptions.cs │ │ │ ├── Encryption │ │ │ │ ├── EncryptedValue.cs │ │ │ │ ├── IEncryptionProvider.cs │ │ │ │ ├── IEncryptionService.cs │ │ │ │ └── IGenericEncryptionProvider.cs │ │ │ ├── Error.cs │ │ │ ├── IApiResourceService.cs │ │ │ ├── IApiScopeService.cs │ │ │ ├── IClientTemplateService.cs │ │ │ ├── IDependencyService.cs │ │ │ ├── IEnvironmentService.cs │ │ │ ├── IError.cs │ │ │ ├── IIdentityResourceService.cs │ │ │ ├── IIdentityServerGroupService.cs │ │ │ ├── IIdentityServerService.cs │ │ │ ├── IPublishingService.cs │ │ │ ├── IResource.cs │ │ │ ├── IResourceAuthoring.cs │ │ │ ├── IResourcePublisher.cs │ │ │ ├── IResourceService.cs │ │ │ ├── ISecretValueEncryptor.cs │ │ │ ├── ITenantService.cs │ │ │ ├── IUserClaimRulesService.cs │ │ │ ├── IdentityServerKey.cs │ │ │ ├── Messages │ │ │ │ ├── PublishResourceMessage.cs │ │ │ │ └── ResourcePublishedSuccessMessage.cs │ │ │ ├── Model │ │ │ │ ├── ApiResource.cs │ │ │ │ ├── ApiScope.cs │ │ │ │ ├── Application.cs │ │ │ │ ├── Client.cs │ │ │ │ ├── ClientScope.cs │ │ │ │ ├── ClientTemplate.cs │ │ │ │ ├── ClientTemplateSecret.cs │ │ │ │ ├── Dependency.cs │ │ │ │ ├── Environment.cs │ │ │ │ ├── GrantType.cs │ │ │ │ ├── HashedToken.cs │ │ │ │ ├── IdOpsClaimExtension.cs │ │ │ │ ├── IdentityResource.cs │ │ │ │ ├── IdentityServer.cs │ │ │ │ ├── IdentityServerEvent.cs │ │ │ │ ├── IdentityServerGroup.cs │ │ │ │ ├── IpAddressFilter.cs │ │ │ │ ├── IpFilterPolicy.cs │ │ │ │ ├── PersonalAccessToken.cs │ │ │ │ ├── Resource.cs │ │ │ │ ├── ResourceAuditEvent.cs │ │ │ │ ├── ResourcePublishState.cs │ │ │ │ ├── ResourceVersion.cs │ │ │ │ ├── Secret.cs │ │ │ │ ├── SecureSecret.cs │ │ │ │ ├── Tenant.cs │ │ │ │ └── UserClaimRule.cs │ │ │ ├── PublishStates.cs │ │ │ ├── PublishedResource.cs │ │ │ ├── ResourceAuthoring │ │ │ │ ├── IApplicationService.cs │ │ │ │ ├── IClientIdGenerator.cs │ │ │ │ ├── IClientService.cs │ │ │ │ ├── IGrantTypeService.cs │ │ │ │ ├── ISharedSecretGenerator.cs │ │ │ │ ├── SaveApiResourceRequest.cs │ │ │ │ └── UpdateClientRequest.cs │ │ │ ├── SaveIdentityServerGroupRequest.cs │ │ │ ├── SaveIdentityServerRequest.cs │ │ │ ├── SearchResult.cs │ │ │ ├── Security │ │ │ │ ├── IUserContext.cs │ │ │ │ ├── IUserContextAccessor.cs │ │ │ │ ├── IUserContextFactory.cs │ │ │ │ ├── Permissions.cs │ │ │ │ ├── Roles.cs │ │ │ │ ├── User.cs │ │ │ │ └── UserContextAccessor.cs │ │ │ └── Store │ │ │ │ ├── IApiResourceStore.cs │ │ │ │ ├── IApiScopeStore.cs │ │ │ │ ├── IApplicationStore.cs │ │ │ │ ├── IClientStore.cs │ │ │ │ ├── IClientTemplateStore.cs │ │ │ │ ├── IEnvironmentStore.cs │ │ │ │ ├── IGrantTypeStore.cs │ │ │ │ ├── IIdentityResourceStore.cs │ │ │ │ ├── IIdentityServerEventStore.cs │ │ │ │ ├── IIdentityServerGroupStore.cs │ │ │ │ ├── IIdentityServerStore.cs │ │ │ │ ├── IPersonalAccessTokenStore.cs │ │ │ │ ├── IResouceAuditStore.cs │ │ │ │ ├── IResourceApprovalLogStore.cs │ │ │ │ ├── IResourceApprovalStateStore.cs │ │ │ │ ├── IResourcePublishLogStore.cs │ │ │ │ ├── IResourcePublishStateStore.cs │ │ │ │ ├── IResourceStore.cs │ │ │ │ ├── IResourceStores.cs │ │ │ │ ├── ITenantResourceStore.cs │ │ │ │ ├── ITenantStore.cs │ │ │ │ └── IUserClaimRuleStore.cs │ │ ├── Api.Host │ │ │ ├── Api.Host.csproj │ │ │ ├── IdOpsSeeder.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ └── appsettings.json │ │ ├── AspNet │ │ │ ├── AspNet.csproj │ │ │ ├── Controllers │ │ │ │ ├── DiagnoseController.cs │ │ │ │ ├── IdentityServerDiscoveryController.cs │ │ │ │ └── SessionController.cs │ │ │ ├── EmbeddedUIMiddleware.cs │ │ │ ├── EmbeddedUIMiddlewareExtensions.cs │ │ │ ├── ForwardHeaderExtensions.cs │ │ │ ├── IdOpsMiddlewareExtensions.cs │ │ │ ├── SameSiteCookieExtensions.cs │ │ │ └── Security │ │ │ │ ├── AuthenticationExtensions.Dev.cs │ │ │ │ ├── AuthenticationExtensions.cs │ │ │ │ ├── ClaimActionCollectionExtensions.cs │ │ │ │ ├── ClaimsPrincipalUserContextFactory.cs │ │ │ │ ├── DevTokenAuthentication │ │ │ │ ├── DevTokenAuthenticationOptions.cs │ │ │ │ ├── DevTokenAuthorizationHandler.cs │ │ │ │ ├── DevTokenDefaults.cs │ │ │ │ ├── DevTokenExtensions.cs │ │ │ │ └── DevUsers.cs │ │ │ │ ├── EnsureAuthenticatedMiddleware.cs │ │ │ │ ├── JsonKeyArrayClaimAction.cs │ │ │ │ ├── SecurityOptions.cs │ │ │ │ ├── UserContextMiddleware.cs │ │ │ │ └── UserContextServiceCollectionExtensions.cs │ │ ├── AuthTokenGenerator │ │ │ ├── Abstractions │ │ │ │ ├── IIdentityService.cs │ │ │ │ ├── IResultFactory.cs │ │ │ │ ├── ITokenAnalyzer.cs │ │ │ │ └── ITokenClient.cs │ │ │ ├── AuthTokenGenerator.csproj │ │ │ ├── AuthTokenGeneratorExtension.cs │ │ │ ├── IdentityService.cs │ │ │ └── Models │ │ │ │ ├── ClaimCategory.cs │ │ │ │ ├── ClaimCategoryMap.cs │ │ │ │ ├── TokenAnalyzer.cs │ │ │ │ ├── TokenClaim.cs │ │ │ │ ├── TokenClient.cs │ │ │ │ ├── TokenModel.cs │ │ │ │ ├── TokenRequestData.cs │ │ │ │ ├── TokenRequestParameter.cs │ │ │ │ └── TokenRequestResult.cs │ │ ├── Authorization │ │ │ ├── Authorization.csproj │ │ │ ├── AuthorizationExtensions.cs │ │ │ ├── Handlers │ │ │ │ ├── PermissionAuthorizationHandler.cs │ │ │ │ └── TenantResourceAuthorizationHandler.cs │ │ │ ├── Policies │ │ │ │ ├── AuthorizationPolicies.cs │ │ │ │ └── AuthorizationPolicyBuilderExtensions.cs │ │ │ └── Requirements │ │ │ │ ├── HasPermissionRequirement.cs │ │ │ │ └── HasTenantRequirement.cs │ │ ├── Core │ │ │ ├── Approval │ │ │ │ ├── ApprovalService.cs │ │ │ │ ├── IApprovalService.cs │ │ │ │ ├── ResourceApproval.cs │ │ │ │ ├── ResourceApprovalLogRequest.cs │ │ │ │ └── ResourceApprovalRequest.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Configuration │ │ │ │ ├── IdOpsServerBuilder.cs │ │ │ │ ├── IdOpsServerBuilderExtensions.cs │ │ │ │ ├── ResourceRegistrationBuilder.cs │ │ │ │ └── ResourceRegistrationBuilderServiceCollectionExtensions.cs │ │ │ ├── Consumers │ │ │ │ ├── IIdentityServerEventMapper.cs │ │ │ │ ├── IdentityServerEventBatchConsumer.cs │ │ │ │ ├── IdentityServerEventMapper.cs │ │ │ │ ├── ResourcePublishedSuccessConsumer.cs │ │ │ │ └── UiConsoleConsumer.cs │ │ │ ├── Core.csproj │ │ │ ├── Data │ │ │ │ ├── ApiResource │ │ │ │ │ ├── ApiResourceDependencyResolver.cs │ │ │ │ │ ├── ApiResourceMessageFactory.cs │ │ │ │ │ ├── ApiResourceService.cs │ │ │ │ │ └── ApiResourcesServiceCollectionExtensions.cs │ │ │ │ ├── ApiScope │ │ │ │ │ ├── ApiScopeMessageFactory.cs │ │ │ │ │ ├── ApiScopeService.cs │ │ │ │ │ └── ApiScopesServiceCollectionExtensions.cs │ │ │ │ ├── ApplicationService │ │ │ │ │ ├── ApplicationService.cs │ │ │ │ │ └── ApplicationsServiceCollectionExtensions.cs │ │ │ │ ├── Client │ │ │ │ │ ├── ApplicationDependencyResolver.cs │ │ │ │ │ ├── ClientDependencyResolver.cs │ │ │ │ │ ├── ClientMessageFactory.cs │ │ │ │ │ ├── ClientService.cs │ │ │ │ │ └── ClientServiceCollectionExtensions.cs │ │ │ │ ├── Environment │ │ │ │ │ ├── EnvironmentService.cs │ │ │ │ │ └── EnvironmentServiceCollectionExtensions.cs │ │ │ │ ├── Errors │ │ │ │ │ └── NoEncryptedSecretError.cs │ │ │ │ ├── GrantType │ │ │ │ │ ├── GrantTypeService.cs │ │ │ │ │ └── GrantTypesServiceCollectionExtensions.cs │ │ │ │ ├── IdentityResource │ │ │ │ │ ├── IdentityResourceMessageFactory.cs │ │ │ │ │ ├── IdentityResourceService.cs │ │ │ │ │ └── IdentityResourcesServiceCollectionExtensions.cs │ │ │ │ ├── IdentityServer │ │ │ │ │ ├── IdentityServerGroupService.cs │ │ │ │ │ ├── IdentityServerService.cs │ │ │ │ │ └── IdentityServerServiceCollectionExtensions.cs │ │ │ │ ├── PersonalAccessToken │ │ │ │ │ ├── Builder │ │ │ │ │ │ ├── PersonalAccessTokenBuilder.cs │ │ │ │ │ │ └── WellKnownPersonalAccessTokenSources.cs │ │ │ │ │ ├── Errors │ │ │ │ │ │ ├── ExpiresAtInvalid.cs │ │ │ │ │ │ ├── HashAlgorithmNotFound.cs │ │ │ │ │ │ └── ICreatePersonalAccessTokenError.cs │ │ │ │ │ ├── Extensions │ │ │ │ │ │ └── ClaimsExtensionRequest.cs │ │ │ │ │ ├── IPersonalAccessTokenService.cs │ │ │ │ │ ├── PersonalAccessTokenMessageFactory.cs │ │ │ │ │ ├── PersonalAccessTokenService.cs │ │ │ │ │ ├── PersonalAccessTokensServiceCollectionExtensions.cs │ │ │ │ │ ├── Requests │ │ │ │ │ │ ├── CreatePersonalAccessTokenRequest.cs │ │ │ │ │ │ └── UpdatePersonalAccessTokenRequest.cs │ │ │ │ │ └── Results │ │ │ │ │ │ ├── AddSecretPersonalAccessTokenResult.cs │ │ │ │ │ │ ├── CreatePersonalAccessTokenResult.cs │ │ │ │ │ │ └── RemoveSecretPersonalAccessTokenResult.cs │ │ │ │ ├── Templates │ │ │ │ │ ├── ClientTemplateService.cs │ │ │ │ │ ├── ClientTemplatesServiceCollectionExtensions.cs │ │ │ │ │ └── TemplateRenderer.cs │ │ │ │ ├── Tenant │ │ │ │ │ ├── ITenantUserRoleResolver.cs │ │ │ │ │ ├── TenantService.cs │ │ │ │ │ ├── TenantUserRoleResolver.cs │ │ │ │ │ └── TenantsServiceCollectionExtensions.cs │ │ │ │ └── UserClaimRule │ │ │ │ │ ├── UserClaimRuleMessageFactory.cs │ │ │ │ │ ├── UserClaimRulesService.cs │ │ │ │ │ └── UserClaimRulesServiceCollectionExtensions.cs │ │ │ ├── Dependencies │ │ │ │ ├── DependencyService.cs │ │ │ │ ├── IPublishedResourceDependencyResolver.cs │ │ │ │ ├── IResourceDependencyResolver.cs │ │ │ │ ├── PublishedResourceDependencyResolver.cs │ │ │ │ └── ResourceDependencyResolver.cs │ │ │ ├── Encryption │ │ │ │ ├── EncryptionService.cs │ │ │ │ ├── EncryptionServiceCollectionExtensions.cs │ │ │ │ ├── EncryptionServiceOptions.cs │ │ │ │ ├── KeyvaultEncryption │ │ │ │ │ ├── AzureKeyVaultCryptographyClientProvider.cs │ │ │ │ │ ├── AzureKeyVaultExtension.cs │ │ │ │ │ ├── Configuration │ │ │ │ │ │ └── AzureKeyVaultOptions.cs │ │ │ │ │ ├── ICryptographyClientProvider.cs │ │ │ │ │ ├── KeyVaultEncryptedValue.cs │ │ │ │ │ └── KeyVaultEncryptionProvider.cs │ │ │ │ └── NoEncryptionService │ │ │ │ │ ├── NoEncryptedSecretException.cs │ │ │ │ │ └── NoEncryptionProvider.cs │ │ │ ├── ErrorException.cs │ │ │ ├── GuidClientIdGenerator.cs │ │ │ ├── ISecretService.cs │ │ │ ├── IdOpsActivity.cs │ │ │ ├── IdOpsMeters.cs │ │ │ ├── OpsHub.cs │ │ │ ├── Publishing │ │ │ │ ├── IPublishingContext.cs │ │ │ │ ├── IPublishingContextFactory.cs │ │ │ │ ├── IResourceMessageFactory.cs │ │ │ │ ├── IResourceMessageFactoryResolver.cs │ │ │ │ ├── InMemoryPublishingContext.cs │ │ │ │ ├── InMemoryPublishingContextFactory.cs │ │ │ │ ├── PublishResourceMapper.cs │ │ │ │ ├── PublishedResourceMatcher.cs │ │ │ │ ├── PublisherHelper.cs │ │ │ │ ├── PublishingContextExtensions.cs │ │ │ │ ├── PublishingService.cs │ │ │ │ ├── ResourceMessageFactoryResolver.cs │ │ │ │ ├── ResourcePublisher.cs │ │ │ │ ├── ResourcePublishingLogRequest.cs │ │ │ │ └── TenantResourceMessageFactory.cs │ │ │ ├── Resources │ │ │ │ ├── IResourceManager.cs │ │ │ │ ├── IResourceServiceResolver.cs │ │ │ │ ├── ITenantResourceService.cs │ │ │ │ ├── ResourceAuthoring.cs │ │ │ │ ├── ResourceChangeContext.cs │ │ │ │ ├── ResourceManager.cs │ │ │ │ ├── ResourceServiceResolver.cs │ │ │ │ ├── ResourceStores.cs │ │ │ │ ├── ResourceVersionExtensions.cs │ │ │ │ └── TenantResourceService.cs │ │ │ ├── SaveResourceAction.cs │ │ │ ├── SecretService.cs │ │ │ ├── Security │ │ │ │ └── DefaultUserContext.cs │ │ │ ├── Telemetry.cs │ │ │ └── UserTenantService.cs │ │ ├── Encryption.KeyVault │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AzureKeyVaultExtension.cs │ │ │ ├── Configuration │ │ │ │ └── AzureKeyVaultOptions.cs │ │ │ ├── CryptographyClientProvider.cs │ │ │ ├── Encryption.KeyVault.csproj │ │ │ ├── ICryptographyClientProvider.cs │ │ │ └── KeyVaultEncryptionService.cs │ │ ├── GraphQL │ │ │ ├── ApiResource │ │ │ │ ├── ApiResourceMutations.cs │ │ │ │ ├── ApiResourceQueries.cs │ │ │ │ ├── ApiResourceType.cs │ │ │ │ └── GetApiResourcesInput.cs │ │ │ ├── ApiScope │ │ │ │ ├── ApiScopeMutations.cs │ │ │ │ ├── ApiScopeQueries.cs │ │ │ │ ├── ApiScopeType.cs │ │ │ │ ├── GetApiScopesInput.cs │ │ │ │ ├── SaveApiResourcePayload.cs │ │ │ │ └── SaveApiScopePayload.cs │ │ │ ├── Application │ │ │ │ ├── AddEnvironmentToApplicationPayload.cs │ │ │ │ ├── ApplicationMutations.cs │ │ │ │ ├── ApplicationQueries.cs │ │ │ │ ├── ApplicationType.cs │ │ │ │ ├── CreateApplicationPayload.cs │ │ │ │ └── UpdateApplicationPayload.cs │ │ │ ├── Approval │ │ │ │ ├── ApprovalMutations.cs │ │ │ │ └── ApprovalQueries.cs │ │ │ ├── Authorization │ │ │ │ ├── AccessMode.cs │ │ │ │ ├── AuthorizeClientAuthoringAttribute.cs │ │ │ │ └── AuthorizePersonalAccessTokenAuthoringAttribute.cs │ │ │ ├── Client │ │ │ │ ├── AddClientSecretPayload.cs │ │ │ │ ├── ClientMutations.cs │ │ │ │ ├── ClientQueries.cs │ │ │ │ ├── ClientType.cs │ │ │ │ ├── PersonalAccessTokenType.cs │ │ │ │ ├── RequestTokenInput.cs │ │ │ │ ├── RequestTokenPayload.cs │ │ │ │ ├── SaveClientPayload.cs │ │ │ │ └── TokenRequestDataResultFactory.cs │ │ │ ├── ClientTemplate │ │ │ │ ├── ClientTemplateMutations.cs │ │ │ │ ├── ClientTemplateQueries.cs │ │ │ │ ├── ClientTemplateSecretType.cs │ │ │ │ ├── ClientTemplateType.cs │ │ │ │ └── SaveClientTemplatePayload.cs │ │ │ ├── Common │ │ │ │ ├── EnumString.cs │ │ │ │ └── Payload.cs │ │ │ ├── DataLoaders │ │ │ │ ├── ApiScopeByIdDataLoader.cs │ │ │ │ ├── ClientTemplateByIdDataLoader.cs │ │ │ │ ├── EnvironmentByIdDataLoader.cs │ │ │ │ ├── IdentityServerGroupByIdDataLoader.cs │ │ │ │ └── TenantByIdDataLoader.cs │ │ │ ├── Dependencies │ │ │ │ └── DependencyQueries.cs │ │ │ ├── Environment │ │ │ │ ├── EnvironmentMutations.cs │ │ │ │ ├── EnvironmentQueries.cs │ │ │ │ └── SaveTenantPayload.cs │ │ │ ├── Extensions │ │ │ │ └── EnumToValueList.cs │ │ │ ├── GrantType │ │ │ │ ├── GrantTypeMutations.cs │ │ │ │ ├── GrantTypeQueries.cs │ │ │ │ └── SaveGrantTypePayload.cs │ │ │ ├── GraphQL.csproj │ │ │ ├── GraphQLServiceCollectionExtensions.cs │ │ │ ├── Hashing │ │ │ │ ├── HashAlgorithm.cs │ │ │ │ └── HashAlgorithmQueryExtensions.cs │ │ │ ├── IdentityResource │ │ │ │ ├── GetIdentityResourcesInput.cs │ │ │ │ ├── IdentityResourceMutations.cs │ │ │ │ ├── IdentityResourceQueries.cs │ │ │ │ ├── IdentityResourceType.cs │ │ │ │ └── SaveIdentityResourcePayload.cs │ │ │ ├── IdentityServer │ │ │ │ ├── IdentityServerMutations.cs │ │ │ │ ├── IdentityServerQueries.cs │ │ │ │ ├── IdentityServerType.cs │ │ │ │ ├── SaveIdentityServerGroupPayload.cs │ │ │ │ └── SaveIdentityServerPayload.cs │ │ │ ├── Insights │ │ │ │ ├── IdentityServerEventType.cs │ │ │ │ └── InsightsQueries.cs │ │ │ ├── PersonalAccessTokens │ │ │ │ ├── AddSecretPersonalAccessTokenPayload.cs │ │ │ │ ├── AddSecretPersonalAccessTokenRequest.cs │ │ │ │ ├── CreatePersonalAccessTokenPayload.cs │ │ │ │ ├── GetPersonalAccessTokensInput.cs │ │ │ │ ├── PersonalAccessTokenQueries.cs │ │ │ │ ├── PersonalAccessTokensMutations.cs │ │ │ │ ├── RemoveSecretPersonalAccessTokenPayload.cs │ │ │ │ ├── RemoveSecretPersonalAccessTokenRequest.cs │ │ │ │ └── SavePersonalAccessTokenPayload.cs │ │ │ ├── Publishing │ │ │ │ ├── PublishMutations.cs │ │ │ │ └── PublishQueries.cs │ │ │ ├── ResouceAudit │ │ │ │ └── ResourceAuditQueries.cs │ │ │ ├── ResourceInterfaceType.cs │ │ │ ├── RootTypes.cs │ │ │ ├── Tenant │ │ │ │ ├── SaveTenantPayload.cs │ │ │ │ ├── TenantMutations.cs │ │ │ │ └── TenantQueries.cs │ │ │ ├── User │ │ │ │ ├── UserQueries.cs │ │ │ │ └── UserType.cs │ │ │ └── UserClaimRule │ │ │ │ ├── GetUserClaimRulesInput.cs │ │ │ │ ├── SaveUserClaimRulePayload.cs │ │ │ │ ├── UserClaimRuleMutations.cs │ │ │ │ ├── UserClaimRuleQueries.cs │ │ │ │ └── UserClaimRuleType.cs │ │ └── Store.Mongo │ │ │ ├── ApiResourceStore.cs │ │ │ ├── ApiScopeStore.cs │ │ │ ├── ApplicationStore.cs │ │ │ ├── ClientStore.cs │ │ │ ├── ClientTemplateStore.cs │ │ │ ├── CollectionExtensions.cs │ │ │ ├── CollectionNames.cs │ │ │ ├── Configuration │ │ │ ├── ApiResourceCollectionConfiguration.cs │ │ │ ├── ApiScopeCollectionConfiguration.cs │ │ │ ├── ApplicationCollectionConfiguration.cs │ │ │ ├── ClientCollectionConfiguration.cs │ │ │ ├── ClientTemplateCollectionConfiguration.cs │ │ │ ├── EnvironmentCollectionConfiguration.cs │ │ │ ├── GrantTypeCollectionConfiguration.cs │ │ │ ├── IdentityResourceCollectionConfiguration.cs │ │ │ ├── IdentityServerCollectionConfiguration.cs │ │ │ ├── IdentityServerEventCollectionConfiguration.cs │ │ │ ├── IdentityServerGroupCollectionConfiguration.cs │ │ │ ├── PersonalAccessTokenCollectionConfiguration.cs │ │ │ ├── ResourceApprovalLogCollectionConfiguration.cs │ │ │ ├── ResourceApprovalStateCollectionConfiguration.cs │ │ │ ├── ResourceAuditEventCollectionConfiguration.cs │ │ │ ├── ResourcePublishLogCollectionConfiguration.cs │ │ │ ├── ResourcePublishStateCollectionConfiguration.cs │ │ │ ├── SecureSecretCollectionConfiguration.cs │ │ │ ├── TenantCollectionConfiguration.cs │ │ │ └── UserClaimRuleCollectionConfiguration.cs │ │ │ ├── EnvironmentStore.cs │ │ │ ├── GrantTypeStore.cs │ │ │ ├── IIdOpsDbContext.cs │ │ │ ├── IdOpsDbContext.cs │ │ │ ├── IdentityResourceStore.cs │ │ │ ├── IdentityServerEventStore.cs │ │ │ ├── IdentityServerGroupStore.cs │ │ │ ├── IdentityServerStore.cs │ │ │ ├── PersonalAccessTokenStore.cs │ │ │ ├── ResouceAuditStore.cs │ │ │ ├── ResourceApprovalLogStore.cs │ │ │ ├── ResourceApprovalStateStore.cs │ │ │ ├── ResourcePublishLogStore.cs │ │ │ ├── ResourcePublishStateStore.cs │ │ │ ├── ResourceStore.cs │ │ │ ├── Store.Mongo.csproj │ │ │ ├── StoreServerCollectionExtensions.cs │ │ │ ├── TenantResourceStore.cs │ │ │ ├── TenantStore.cs │ │ │ └── UserClaimRulesStore.cs │ ├── test │ │ ├── AuthTokenGenerator.Tests │ │ │ ├── AuthTokenGenerator.Tests.csproj │ │ │ └── IdentityServiceTests.cs │ │ ├── Core.Tests │ │ │ ├── ApplicationServiceTests.cs │ │ │ ├── ClientTemplateServiceTests.cs │ │ │ ├── Core.Tests.csproj │ │ │ ├── ServiceTestsBase.cs │ │ │ ├── StubUserContextAccessor.cs │ │ │ ├── TemplateServiceTests.cs │ │ │ ├── TenantServiceTests.cs │ │ │ └── __snapshots__ │ │ │ │ ├── ApplicationServiceTests.Save_WithValidRequest_IsSaved.snap │ │ │ │ ├── ClientTemplateServiceTests.SaveClient_FromClientTemplate_IsSaved.snap │ │ │ │ └── Foo1.snap │ │ ├── Encryption.KeyVault.Tests │ │ │ ├── Encryption.KeyVault.Tests.csproj │ │ │ └── KeyVaultControllerTests.cs │ │ ├── GraphQL.Tests │ │ │ ├── ApiScopeTests.cs │ │ │ ├── ApplicationTests.cs │ │ │ ├── ClientTemplateTests.cs │ │ │ ├── ClientTests.cs │ │ │ ├── GraphQL.Tests.csproj │ │ │ ├── HttpContextEnricher.cs │ │ │ ├── ITestRequestBuilder.cs │ │ │ ├── MongoCollectionFixture.cs │ │ │ ├── RepositoryTest.cs │ │ │ ├── SchemaTest.cs │ │ │ ├── TenantTests.cs │ │ │ ├── TestDataBuilder.cs │ │ │ ├── TestDataBuilderExtensions.cs │ │ │ ├── TestHelper.cs │ │ │ ├── TestRequestBuilder.cs │ │ │ ├── TestRequestBuilderExtensions.cs │ │ │ ├── __operations__ │ │ │ │ ├── CreateApplication.graphql │ │ │ │ ├── CreateClient.graphql │ │ │ │ ├── GetApiScopes.graphql │ │ │ │ ├── GetClientTemplates.graphql │ │ │ │ └── GetTenants.graphql │ │ │ └── __snapshots__ │ │ │ │ ├── ApiScopeTests.GetApiScopes_ForUserWihtoutPermission_IsDenied.snap │ │ │ │ ├── ApiScopeTests.GetApiScopes_OfWrongTenant_ResultIsEmpty.snap │ │ │ │ ├── ApiScopeTests.GetApiScopes_When_NotAuthenticated.snap │ │ │ │ ├── ApiScopeTests.ValidRequest.snap │ │ │ │ ├── ApplicationTests.CreateApplication_ByUserWithoutPermission_IsDenied.snap │ │ │ │ ├── ApplicationTests.CreateApplication_NotAuthenticated.snap │ │ │ │ ├── ApplicationTests.ValidRequest.snap │ │ │ │ ├── ClientTemplateTests.GetClientTemplates_NotAuthenticated.snap │ │ │ │ ├── ClientTemplateTests.ValidRequest.snap │ │ │ │ ├── ClientTests.CreateClient_ByUserWithoutPermission_IsDenied.snap │ │ │ │ ├── ClientTests.CreateClient_NotAuthenticated.snap │ │ │ │ ├── ClientTests.ValidRequest.snap │ │ │ │ ├── TenantTests.GetTenant_NotAuthenticated.snap │ │ │ │ ├── TenantTests.GetWrongTenant_ResultIsEmpty.snap │ │ │ │ ├── TenantTests.ValidRequest.snap │ │ │ │ └── schema.graphql │ │ ├── Host.Tests │ │ │ ├── Host.Tests.csproj │ │ │ ├── IdOpsTestServer.cs │ │ │ ├── StatupTests.cs │ │ │ └── appsettings.json │ │ └── Store.Mongo.Tests │ │ │ ├── ApiResourceStoreTests.cs │ │ │ ├── ClientStoreTests.cs │ │ │ ├── IdentityResourceStoreTests.cs │ │ │ ├── PersonalAccessTokenStoreTests.cs │ │ │ ├── Store.Mongo.Tests.csproj │ │ │ └── TestData.cs │ └── tools │ │ └── IdOps.Importer │ │ ├── ApiResourceImport.cs │ │ ├── IdOps.Importer.csproj │ │ ├── Program.cs │ │ ├── ResourceImporter.cs │ │ └── appsettings.json └── UI │ ├── .env │ ├── .gitignore │ ├── apollo.config.js │ ├── babel.config.js │ ├── jsconfig.json │ ├── package.json │ ├── public │ ├── assets │ │ ├── fonts.css │ │ └── materialdesignicons.min.css │ ├── favicon.ico │ ├── fonts │ │ ├── materialdesignicons-webfont.eot │ │ ├── materialdesignicons-webfont.ttf │ │ ├── materialdesignicons-webfont.woff │ │ └── materialdesignicons-webfont.woff2 │ ├── img │ │ └── icons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── android-chrome-maskable-192x192.png │ │ │ ├── android-chrome-maskable-512x512.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-180x180.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── manifest.json │ │ │ ├── msapplication-icon-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ └── safari-pinned-tab.svg │ ├── index.html │ ├── manifest.json │ └── sw-dev.js │ ├── src │ ├── apollo.js │ ├── components │ │ ├── App.vue │ │ ├── Application │ │ │ ├── ApplicationCreatedView.vue │ │ │ ├── ApplicationView.vue │ │ │ ├── CreateApplicationView.vue │ │ │ └── EditApplicationView.vue │ │ ├── Approval │ │ │ ├── ApprovalPage.vue │ │ │ └── ApproveAllView.vue │ │ ├── Common │ │ │ ├── AccessDenied.vue │ │ │ ├── ComboBoxEditor.vue │ │ │ ├── PropertyList.vue │ │ │ ├── SessionExpired.vue │ │ │ ├── SignalShell.vue │ │ │ ├── SubNavigation.vue │ │ │ └── TenantSelectorMenu.vue │ │ ├── Insights │ │ │ ├── IdentityServerEventsView.vue │ │ │ ├── InsightsDetailCard.vue │ │ │ └── InsightsPage.vue │ │ ├── Publish │ │ │ ├── PublishAllView.vue │ │ │ └── PublishPage.vue │ │ ├── ResourceAuthor │ │ │ ├── AddPatSecret.vue │ │ │ ├── AddSecret.vue │ │ │ ├── ApiResourceView.vue │ │ │ ├── ApiScopeView.vue │ │ │ ├── ClientTemplateView.vue │ │ │ ├── ClientView.vue │ │ │ ├── CreateClientView.vue │ │ │ ├── CreatePersonalAccessTokenView.vue │ │ │ ├── DataConnectorModule.vue │ │ │ ├── EditApiResourceView.vue │ │ │ ├── EditApiScopeView.vue │ │ │ ├── EditClientTemplateView.vue │ │ │ ├── EditClientView.vue │ │ │ ├── EditGrantTypeView.vue │ │ │ ├── EditIdentityResourceView.vue │ │ │ ├── EditPersonalAccessTokenView.vue │ │ │ ├── GrantTypeView.vue │ │ │ ├── IdentityProviders.vue │ │ │ ├── IdentityResourceView.vue │ │ │ ├── PatSecretList.vue │ │ │ ├── PersonalAccessTokenView.vue │ │ │ ├── ResourceAuditList.vue │ │ │ ├── ResourceAuthorPage.vue │ │ │ ├── ResourceDependenciesView.vue │ │ │ ├── ResourceEditCard.vue │ │ │ ├── ResourceLogView.vue │ │ │ ├── ResourcePublishView.vue │ │ │ ├── ResourceTokenView.vue │ │ │ ├── SecretList.vue │ │ │ └── TokenRequestDialog.vue │ │ ├── System │ │ │ ├── EditEnvironmentView.vue │ │ │ ├── EditIdentityServerGroupView.vue │ │ │ ├── EditIdentityServerView.vue │ │ │ ├── EditTenantView.vue │ │ │ ├── EnvironmentView.vue │ │ │ ├── IdentityServerGroupView.vue │ │ │ ├── IdentityServerView.vue │ │ │ ├── SystemPage.vue │ │ │ └── TenantView.vue │ │ ├── User │ │ │ └── MeLoader.vue │ │ └── UserClaimRules │ │ │ ├── EditUserClaimsRulesView.vue │ │ │ ├── RulesView.vue │ │ │ ├── UserClaimRulesPage.vue │ │ │ └── UserClaimsRulesView.vue │ ├── graphql │ │ ├── ApiResource │ │ │ ├── AddSecret.gql │ │ │ ├── Fragments.gql │ │ │ ├── GetAll.gql │ │ │ ├── RemoveSecret.gql │ │ │ └── Save.gql │ │ ├── ApiScope │ │ │ ├── Fragments.gql │ │ │ ├── GetAll.gql │ │ │ └── Save.gql │ │ ├── Application │ │ │ ├── AddClient.gql │ │ │ ├── AddEnvironment.gql │ │ │ ├── ApplicationFragment.gql │ │ │ ├── ClientInfoFragment.gql │ │ │ ├── Create.gql │ │ │ ├── GetById.gql │ │ │ ├── RemoveClient.gql │ │ │ ├── Search.gql │ │ │ └── Update.gql │ │ ├── Approval │ │ │ ├── Approve.gql │ │ │ ├── Get.gql │ │ │ └── Log.gql │ │ ├── Client │ │ │ ├── AddSecret.gql │ │ │ ├── Create.gql │ │ │ ├── Fragments.gql │ │ │ ├── GetById.gql │ │ │ ├── GetToken.gql │ │ │ ├── RemoveSecret.gql │ │ │ ├── Search.gql │ │ │ ├── SearchUnMapped.gql │ │ │ └── Update.gql │ │ ├── ClientTemplate │ │ │ ├── All.gql │ │ │ ├── Fragments.gql │ │ │ ├── GetById.gql │ │ │ ├── Save.gql │ │ │ └── Secrets.gql │ │ ├── Dependency │ │ │ └── GetAllDependencies.gql │ │ ├── Environment │ │ │ ├── GetAll.gql │ │ │ └── Save.gql │ │ ├── GrantType │ │ │ └── Save.gql │ │ ├── IdentityResource │ │ │ ├── Fragments.gql │ │ │ ├── GetAll.gql │ │ │ └── Save.gql │ │ ├── IdentityServer │ │ │ ├── Fragments.gql │ │ │ ├── GetAll.gql │ │ │ ├── GetById.gql │ │ │ └── Save.gql │ │ ├── IdentityServerGroup │ │ │ ├── Fragments.gql │ │ │ ├── GetByTenant.gql │ │ │ └── Save.gql │ │ ├── Insights │ │ │ └── SearchIdentityServerEvents.gql │ │ ├── PersonalAccessToken │ │ │ ├── AddSecret.gql │ │ │ ├── Create.gql │ │ │ ├── Fragments.gql │ │ │ ├── GetAll.gql │ │ │ ├── GetById.gql │ │ │ ├── RemoveSecret.gql │ │ │ ├── Search.gql │ │ │ └── Update.gql │ │ ├── Publishing │ │ │ ├── Get.gql │ │ │ ├── Log.gql │ │ │ └── Publish.gql │ │ ├── ResourceAudit │ │ │ └── Search.gql │ │ ├── ResourceData.gql │ │ ├── SystemData.gql │ │ ├── Tenant │ │ │ ├── GetAll.gql │ │ │ └── Save.gql │ │ ├── User │ │ │ └── GetMe.gql │ │ └── UserClaimRule │ │ │ ├── Fragments.gql │ │ │ ├── GetAll.gql │ │ │ ├── GetById.gql │ │ │ └── Save.gql │ ├── main.js │ ├── plugins │ │ └── vuetify.js │ ├── registerServiceWorker.js │ ├── router.js │ ├── services │ │ ├── applicationService.js │ │ ├── approvalService.js │ │ ├── idResourceService.js │ │ ├── insightsService.js │ │ ├── personalAccessTokenService.js │ │ ├── publishingService.js │ │ ├── systemService.js │ │ ├── tokenFlowService │ │ ├── userClaimsRuleService.js │ │ └── userService.js │ ├── signalrHub.js │ ├── store │ │ ├── applicationStore.js │ │ ├── graphqlClient.js │ │ ├── idResourceStore.js │ │ ├── index.js │ │ ├── insightsStore.js │ │ ├── shellStore.js │ │ ├── systemStore.js │ │ ├── userClaimRuleStore.js │ │ └── userStore.js │ ├── styles │ │ └── variables.scss │ └── sw.js │ ├── vue.config.js │ └── yarn.lock └── tye.yaml /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/.gitignore -------------------------------------------------------------------------------- /All.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/All.sln -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/LICENSE -------------------------------------------------------------------------------- /Publish-UI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/Publish-UI.ps1 -------------------------------------------------------------------------------- /Publish-UI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/Publish-UI.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/README.md -------------------------------------------------------------------------------- /env/id.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/env/id.env -------------------------------------------------------------------------------- /env/id_dev.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/env/id_dev.env -------------------------------------------------------------------------------- /env/id_stage.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/env/id_stage.env -------------------------------------------------------------------------------- /env/idops.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/env/idops.env -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/global.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/nuget.config -------------------------------------------------------------------------------- /pull-request-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/pull-request-build.yml -------------------------------------------------------------------------------- /release-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/release-build.yml -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/IdentityServer/Messaging.Azure/EventHubSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/Messaging.Azure/EventHubSender.cs -------------------------------------------------------------------------------- /src/IdentityServer/Messaging.Azure/Messaging.Azure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/Messaging.Azure/Messaging.Azure.csproj -------------------------------------------------------------------------------- /src/IdentityServer/Messaging.Azure/Options/AzureOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/Messaging.Azure/Options/AzureOptions.cs -------------------------------------------------------------------------------- /src/IdentityServer/Messaging.Azure/Options/AzureServiceBusOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/Messaging.Azure/Options/AzureServiceBusOptions.cs -------------------------------------------------------------------------------- /src/IdentityServer/Messaging.Azure/Options/EventHubOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/Messaging.Azure/Options/EventHubOptions.cs -------------------------------------------------------------------------------- /src/IdentityServer/Messaging.RabbitMQ/Messaging.RabbitMQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/Messaging.RabbitMQ/Messaging.RabbitMQ.csproj -------------------------------------------------------------------------------- /src/IdentityServer/Messaging.RabbitMQ/RabbitMqIdOpsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/Messaging.RabbitMQ/RabbitMqIdOpsBuilderExtensions.cs -------------------------------------------------------------------------------- /src/IdentityServer/Messaging.RabbitMQ/RabbitMqOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/Messaging.RabbitMQ/RabbitMqOptions.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/ActivityEnricherSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/ActivityEnricherSink.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Controllers/TestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Controllers/TestController.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/DataSeeding/DataSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/DataSeeding/DataSeeder.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/DataSeeding/SampleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/DataSeeding/SampleData.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/IdentityServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/IdentityServer.csproj -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Program.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Account/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Account/AccountController.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Account/AccountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Account/AccountOptions.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Account/ExternalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Account/ExternalController.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Account/ExternalProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Account/ExternalProvider.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Account/LoggedOutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Account/LoggedOutViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Account/LoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Account/LoginInputModel.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Account/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Account/LoginViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Account/LogoutInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Account/LogoutInputModel.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Account/LogoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Account/LogoutViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Account/RedirectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Account/RedirectViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Consent/ConsentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Consent/ConsentController.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Consent/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Consent/ConsentInputModel.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Consent/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Consent/ConsentOptions.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Consent/ConsentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Consent/ConsentViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Consent/ScopeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Consent/ScopeViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Device/DeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Device/DeviceController.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Extensions.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Grants/GrantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Grants/GrantsController.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Grants/GrantsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Grants/GrantsViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Home/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Home/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/Home/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/Home/HomeController.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Quickstart/TestUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Quickstart/TestUsers.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/SameSiteCookieExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/SameSiteCookieExtensions.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/SampleProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/SampleProfileService.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Startup.cs -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Account/Logout.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Consent/Index.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Device/Success.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Device/Success.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Device/UserCodeCapture.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Device/UserCodeCapture.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Device/UserCodeConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Device/UserCodeConfirmation.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Diagnostics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Diagnostics/Index.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Grants/Index.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Shared/Redirect.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Shared/Redirect.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Shared/_Nav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Shared/_Nav.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Shared/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Shared/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/Shared/_ValidationSummary.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/appsettings.json -------------------------------------------------------------------------------- /src/IdentityServer/samples/Server/sign_key.jwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/samples/Server/sign_key.jwk -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/Abstractions.csproj -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/DataConnector/IUserDataConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/DataConnector/IUserDataConnector.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/DataConnector/UserDataConnectorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/DataConnector/UserDataConnectorData.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/Events/CorsOriginNotAllowedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/Events/CorsOriginNotAllowedEvent.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/Events/EventIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/Events/EventIds.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/Events/IIdOpsEventSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/Events/IIdOpsEventSink.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/Events/UserDataConnectorFailedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/Events/UserDataConnectorFailedEvent.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/IEventSenderWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/IEventSenderWorker.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/IIdOpsIdentityServerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/IIdOpsIdentityServerBuilder.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/IUserClaimsRulesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/IUserClaimsRulesService.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/Messages/IdentityEventMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/Messages/IdentityEventMessage.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/Messages/PublishResourceMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/Messages/PublishResourceMessage.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/Model/UpdateResourceResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/Model/UpdateResourceResult.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/Stores/IApiResourceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/Stores/IApiResourceRepository.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/Stores/IApiScopeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/Stores/IApiScopeRepository.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/Stores/IClientRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/Stores/IClientRepository.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/Stores/IIdentityResourceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/Stores/IIdentityResourceRepository.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/Stores/IPersistedGrantRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/Stores/IPersistedGrantRepository.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/Stores/IUserClaimRuleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/Stores/IUserClaimRuleRepository.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Abstractions/Wellknown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Abstractions/Wellknown.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Directory.Build.props -------------------------------------------------------------------------------- /src/IdentityServer/src/Hashing/HashAlgorithmResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Hashing/HashAlgorithmResolver.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Hashing/HasherServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Hashing/HasherServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Hashing/Hashing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Hashing/Hashing.csproj -------------------------------------------------------------------------------- /src/IdentityServer/src/Hashing/IHashAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Hashing/IHashAlgorithm.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Hashing/IHashAlgorithmResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Hashing/IHashAlgorithmResolver.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Hashing/IPasswordProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Hashing/IPasswordProvider.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Hashing/PasswordProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Hashing/PasswordProvider.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Hashing/Pbkdf2Algorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Hashing/Pbkdf2Algorithm.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Hashing/Pbkdf2HashAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Hashing/Pbkdf2HashAlgorithm.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Hashing/SshaHashAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Hashing/SshaHashAlgorithm.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/ClaimsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/ClaimsExtensions.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/Core.csproj -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/Events/BusEventSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/Events/BusEventSender.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/Events/BusEventSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/Events/BusEventSink.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/Events/EventExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/Events/EventExtensions.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/Events/IdOpsEventIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/Events/IdOpsEventIds.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/Events/IdOpsEventSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/Events/IdOpsEventSink.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/Extensions/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/Extensions/TaskExtensions.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/IdOpsActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/IdOpsActivity.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/IdOpsMeters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/IdOpsMeters.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/LoggingExtensions.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/Services/CorsPolicyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/Services/CorsPolicyService.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/Store/ClientStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/Store/ClientStore.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/Store/PersistedGrantStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/Store/PersistedGrantStore.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/Store/ResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/Store/ResourceStore.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Core/Telemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Core/Telemetry.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/ClaimExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/ClaimExtension.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/ClaimRuleMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/ClaimRuleMatch.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/ClaimRuleMatchMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/ClaimRuleMatchMode.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/ConnectorProfileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/ConnectorProfileType.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/DataConnectorOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/DataConnectorOptions.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/DataConnectorProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/DataConnectorProperty.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/EnabledProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/EnabledProvider.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/IdOpsApiResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/IdOpsApiResource.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/IdOpsApiScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/IdOpsApiScope.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/IdOpsClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/IdOpsClient.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/IdOpsHashedToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/IdOpsHashedToken.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/IdOpsIdentityResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/IdOpsIdentityResource.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/IdOpsPersonalAccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/IdOpsPersonalAccessToken.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/IpAddressFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/IpAddressFilter.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/IpFilterPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/IpFilterPolicy.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/PublishSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/PublishSource.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/ResourceTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/ResourceTypes.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/UserClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/UserClaim.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/IdentityServer.Storage/UserClaimRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/IdentityServer.Storage/UserClaimRule.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Store.Mongo/ApiResourceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Store.Mongo/ApiResourceRepository.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Store.Mongo/ApiScopeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Store.Mongo/ApiScopeRepository.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Store.Mongo/ClientRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Store.Mongo/ClientRepository.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Store.Mongo/CollectionNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Store.Mongo/CollectionNames.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Store.Mongo/Configuration/WellKnownPatFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Store.Mongo/Configuration/WellKnownPatFields.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Store.Mongo/IIdentityStoreDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Store.Mongo/IIdentityStoreDbContext.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Store.Mongo/IdOpsMongoOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Store.Mongo/IdOpsMongoOptions.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Store.Mongo/IdentityResourceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Store.Mongo/IdentityResourceRepository.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Store.Mongo/IdentityStoreDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Store.Mongo/IdentityStoreDbContext.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Store.Mongo/MongoCollations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Store.Mongo/MongoCollations.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Store.Mongo/PersistedGrantRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Store.Mongo/PersistedGrantRepository.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Store.Mongo/PersonalAccessTokenRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Store.Mongo/PersonalAccessTokenRepository.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Store.Mongo/ResourceUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Store.Mongo/ResourceUpdater.cs -------------------------------------------------------------------------------- /src/IdentityServer/src/Store.Mongo/Store.Mongo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Store.Mongo/Store.Mongo.csproj -------------------------------------------------------------------------------- /src/IdentityServer/src/Store.Mongo/UserClaimRuleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/src/Store.Mongo/UserClaimRuleRepository.cs -------------------------------------------------------------------------------- /src/IdentityServer/test/IdentityServer.Store.Mongo.Tests/RepositoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/IdentityServer/test/IdentityServer.Store.Mongo.Tests/RepositoryTest.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Abstractions.csproj -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Configuration/IdOpsServerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Configuration/IdOpsServerBuilder.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Configuration/IdOpsServerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Configuration/IdOpsServerOptions.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Encryption/EncryptedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Encryption/EncryptedValue.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Encryption/IEncryptionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Encryption/IEncryptionProvider.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Encryption/IEncryptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Encryption/IEncryptionService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Encryption/IGenericEncryptionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Encryption/IGenericEncryptionProvider.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Error.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IApiResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IApiResourceService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IApiScopeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IApiScopeService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IClientTemplateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IClientTemplateService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IDependencyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IDependencyService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IEnvironmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IEnvironmentService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IError.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IIdentityResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IIdentityResourceService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IIdentityServerGroupService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IIdentityServerGroupService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IIdentityServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IIdentityServerService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IPublishingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IPublishingService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IResource.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IResourceAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IResourceAuthoring.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IResourcePublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IResourcePublisher.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IResourceService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/ISecretValueEncryptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/ISecretValueEncryptor.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/ITenantService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/ITenantService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IUserClaimRulesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IUserClaimRulesService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/IdentityServerKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/IdentityServerKey.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Messages/PublishResourceMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Messages/PublishResourceMessage.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Messages/ResourcePublishedSuccessMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Messages/ResourcePublishedSuccessMessage.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/ApiResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/ApiResource.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/ApiScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/ApiScope.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/Application.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/Client.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/ClientScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/ClientScope.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/ClientTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/ClientTemplate.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/ClientTemplateSecret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/ClientTemplateSecret.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/Dependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/Dependency.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/Environment.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/GrantType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/GrantType.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/HashedToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/HashedToken.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/IdOpsClaimExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/IdOpsClaimExtension.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/IdentityResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/IdentityResource.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/IdentityServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/IdentityServer.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/IdentityServerEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/IdentityServerEvent.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/IdentityServerGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/IdentityServerGroup.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/IpAddressFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/IpAddressFilter.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/IpFilterPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/IpFilterPolicy.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/PersonalAccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/PersonalAccessToken.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/Resource.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/ResourceAuditEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/ResourceAuditEvent.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/ResourcePublishState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/ResourcePublishState.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/ResourceVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/ResourceVersion.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/Secret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/Secret.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/SecureSecret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/SecureSecret.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/Tenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/Tenant.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Model/UserClaimRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Model/UserClaimRule.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/PublishStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/PublishStates.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/PublishedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/PublishedResource.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/ResourceAuthoring/IApplicationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/ResourceAuthoring/IApplicationService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/ResourceAuthoring/IClientIdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/ResourceAuthoring/IClientIdGenerator.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/ResourceAuthoring/IClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/ResourceAuthoring/IClientService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/ResourceAuthoring/IGrantTypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/ResourceAuthoring/IGrantTypeService.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/ResourceAuthoring/ISharedSecretGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/ResourceAuthoring/ISharedSecretGenerator.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/ResourceAuthoring/SaveApiResourceRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/ResourceAuthoring/SaveApiResourceRequest.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/ResourceAuthoring/UpdateClientRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/ResourceAuthoring/UpdateClientRequest.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/SaveIdentityServerGroupRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/SaveIdentityServerGroupRequest.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/SaveIdentityServerRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/SaveIdentityServerRequest.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/SearchResult.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Security/IUserContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Security/IUserContext.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Security/IUserContextAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Security/IUserContextAccessor.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Security/IUserContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Security/IUserContextFactory.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Security/Permissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Security/Permissions.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Security/Roles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Security/Roles.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Security/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Security/User.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Security/UserContextAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Security/UserContextAccessor.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IApiResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IApiResourceStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IApiScopeStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IApiScopeStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IApplicationStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IApplicationStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IClientStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IClientStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IClientTemplateStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IClientTemplateStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IEnvironmentStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IEnvironmentStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IGrantTypeStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IGrantTypeStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IIdentityResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IIdentityResourceStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IIdentityServerEventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IIdentityServerEventStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IIdentityServerGroupStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IIdentityServerGroupStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IIdentityServerStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IIdentityServerStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IPersonalAccessTokenStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IPersonalAccessTokenStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IResouceAuditStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IResouceAuditStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IResourceApprovalLogStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IResourceApprovalLogStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IResourceApprovalStateStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IResourceApprovalStateStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IResourcePublishLogStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IResourcePublishLogStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IResourcePublishStateStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IResourcePublishStateStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IResourceStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IResourceStores.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IResourceStores.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/ITenantResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/ITenantResourceStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/ITenantStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/ITenantStore.cs -------------------------------------------------------------------------------- /src/Server/src/Abstractions/Store/IUserClaimRuleStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Abstractions/Store/IUserClaimRuleStore.cs -------------------------------------------------------------------------------- /src/Server/src/Api.Host/Api.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Api.Host/Api.Host.csproj -------------------------------------------------------------------------------- /src/Server/src/Api.Host/IdOpsSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Api.Host/IdOpsSeeder.cs -------------------------------------------------------------------------------- /src/Server/src/Api.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Api.Host/Program.cs -------------------------------------------------------------------------------- /src/Server/src/Api.Host/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Api.Host/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Server/src/Api.Host/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Api.Host/Startup.cs -------------------------------------------------------------------------------- /src/Server/src/Api.Host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Api.Host/appsettings.json -------------------------------------------------------------------------------- /src/Server/src/AspNet/AspNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/AspNet.csproj -------------------------------------------------------------------------------- /src/Server/src/AspNet/Controllers/DiagnoseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/Controllers/DiagnoseController.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/Controllers/IdentityServerDiscoveryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/Controllers/IdentityServerDiscoveryController.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/Controllers/SessionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/Controllers/SessionController.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/EmbeddedUIMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/EmbeddedUIMiddleware.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/EmbeddedUIMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/EmbeddedUIMiddlewareExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/ForwardHeaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/ForwardHeaderExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/IdOpsMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/IdOpsMiddlewareExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/SameSiteCookieExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/SameSiteCookieExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/Security/AuthenticationExtensions.Dev.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/Security/AuthenticationExtensions.Dev.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/Security/AuthenticationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/Security/AuthenticationExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/Security/ClaimActionCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/Security/ClaimActionCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/Security/ClaimsPrincipalUserContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/Security/ClaimsPrincipalUserContextFactory.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/Security/DevTokenAuthentication/DevTokenDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/Security/DevTokenAuthentication/DevTokenDefaults.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/Security/DevTokenAuthentication/DevUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/Security/DevTokenAuthentication/DevUsers.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/Security/EnsureAuthenticatedMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/Security/EnsureAuthenticatedMiddleware.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/Security/JsonKeyArrayClaimAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/Security/JsonKeyArrayClaimAction.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/Security/SecurityOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/Security/SecurityOptions.cs -------------------------------------------------------------------------------- /src/Server/src/AspNet/Security/UserContextMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AspNet/Security/UserContextMiddleware.cs -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/Abstractions/IIdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/Abstractions/IIdentityService.cs -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/Abstractions/IResultFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/Abstractions/IResultFactory.cs -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/Abstractions/ITokenAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/Abstractions/ITokenAnalyzer.cs -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/Abstractions/ITokenClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/Abstractions/ITokenClient.cs -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/AuthTokenGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/AuthTokenGenerator.csproj -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/AuthTokenGeneratorExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/AuthTokenGeneratorExtension.cs -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/IdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/IdentityService.cs -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/Models/ClaimCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/Models/ClaimCategory.cs -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/Models/ClaimCategoryMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/Models/ClaimCategoryMap.cs -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/Models/TokenAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/Models/TokenAnalyzer.cs -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/Models/TokenClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/Models/TokenClaim.cs -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/Models/TokenClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/Models/TokenClient.cs -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/Models/TokenModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/Models/TokenModel.cs -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/Models/TokenRequestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/Models/TokenRequestData.cs -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/Models/TokenRequestParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/Models/TokenRequestParameter.cs -------------------------------------------------------------------------------- /src/Server/src/AuthTokenGenerator/Models/TokenRequestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/AuthTokenGenerator/Models/TokenRequestResult.cs -------------------------------------------------------------------------------- /src/Server/src/Authorization/Authorization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Authorization/Authorization.csproj -------------------------------------------------------------------------------- /src/Server/src/Authorization/AuthorizationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Authorization/AuthorizationExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/Authorization/Handlers/PermissionAuthorizationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Authorization/Handlers/PermissionAuthorizationHandler.cs -------------------------------------------------------------------------------- /src/Server/src/Authorization/Policies/AuthorizationPolicies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Authorization/Policies/AuthorizationPolicies.cs -------------------------------------------------------------------------------- /src/Server/src/Authorization/Requirements/HasPermissionRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Authorization/Requirements/HasPermissionRequirement.cs -------------------------------------------------------------------------------- /src/Server/src/Authorization/Requirements/HasTenantRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Authorization/Requirements/HasTenantRequirement.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Approval/ApprovalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Approval/ApprovalService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Approval/IApprovalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Approval/IApprovalService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Approval/ResourceApproval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Approval/ResourceApproval.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Approval/ResourceApprovalLogRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Approval/ResourceApprovalLogRequest.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Approval/ResourceApprovalRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Approval/ResourceApprovalRequest.cs -------------------------------------------------------------------------------- /src/Server/src/Core/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("IdOps.GraphQL.Tests")] 4 | 5 | -------------------------------------------------------------------------------- /src/Server/src/Core/Configuration/IdOpsServerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Configuration/IdOpsServerBuilder.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Configuration/IdOpsServerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Configuration/IdOpsServerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Configuration/ResourceRegistrationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Configuration/ResourceRegistrationBuilder.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Consumers/IIdentityServerEventMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Consumers/IIdentityServerEventMapper.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Consumers/IdentityServerEventBatchConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Consumers/IdentityServerEventBatchConsumer.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Consumers/IdentityServerEventMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Consumers/IdentityServerEventMapper.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Consumers/ResourcePublishedSuccessConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Consumers/ResourcePublishedSuccessConsumer.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Consumers/UiConsoleConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Consumers/UiConsoleConsumer.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Core.csproj -------------------------------------------------------------------------------- /src/Server/src/Core/Data/ApiResource/ApiResourceDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/ApiResource/ApiResourceDependencyResolver.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/ApiResource/ApiResourceMessageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/ApiResource/ApiResourceMessageFactory.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/ApiResource/ApiResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/ApiResource/ApiResourceService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/ApiScope/ApiScopeMessageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/ApiScope/ApiScopeMessageFactory.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/ApiScope/ApiScopeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/ApiScope/ApiScopeService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/ApplicationService/ApplicationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/ApplicationService/ApplicationService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/Client/ApplicationDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/Client/ApplicationDependencyResolver.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/Client/ClientDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/Client/ClientDependencyResolver.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/Client/ClientMessageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/Client/ClientMessageFactory.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/Client/ClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/Client/ClientService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/Client/ClientServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/Client/ClientServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/Environment/EnvironmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/Environment/EnvironmentService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/Errors/NoEncryptedSecretError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/Errors/NoEncryptedSecretError.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/GrantType/GrantTypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/GrantType/GrantTypeService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/IdentityResource/IdentityResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/IdentityResource/IdentityResourceService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/IdentityServer/IdentityServerGroupService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/IdentityServer/IdentityServerGroupService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/IdentityServer/IdentityServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/IdentityServer/IdentityServerService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/PersonalAccessToken/Errors/ExpiresAtInvalid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/PersonalAccessToken/Errors/ExpiresAtInvalid.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/Templates/ClientTemplateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/Templates/ClientTemplateService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/Templates/TemplateRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/Templates/TemplateRenderer.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/Tenant/ITenantUserRoleResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/Tenant/ITenantUserRoleResolver.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/Tenant/TenantService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/Tenant/TenantService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/Tenant/TenantUserRoleResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/Tenant/TenantUserRoleResolver.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/Tenant/TenantsServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/Tenant/TenantsServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/UserClaimRule/UserClaimRuleMessageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/UserClaimRule/UserClaimRuleMessageFactory.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Data/UserClaimRule/UserClaimRulesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Data/UserClaimRule/UserClaimRulesService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Dependencies/DependencyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Dependencies/DependencyService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Dependencies/IResourceDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Dependencies/IResourceDependencyResolver.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Dependencies/PublishedResourceDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Dependencies/PublishedResourceDependencyResolver.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Dependencies/ResourceDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Dependencies/ResourceDependencyResolver.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Encryption/EncryptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Encryption/EncryptionService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Encryption/EncryptionServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Encryption/EncryptionServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Encryption/EncryptionServiceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Encryption/EncryptionServiceOptions.cs -------------------------------------------------------------------------------- /src/Server/src/Core/ErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/ErrorException.cs -------------------------------------------------------------------------------- /src/Server/src/Core/GuidClientIdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/GuidClientIdGenerator.cs -------------------------------------------------------------------------------- /src/Server/src/Core/ISecretService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/ISecretService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/IdOpsActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/IdOpsActivity.cs -------------------------------------------------------------------------------- /src/Server/src/Core/IdOpsMeters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/IdOpsMeters.cs -------------------------------------------------------------------------------- /src/Server/src/Core/OpsHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/OpsHub.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Publishing/IPublishingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Publishing/IPublishingContext.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Publishing/IPublishingContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Publishing/IPublishingContextFactory.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Publishing/IResourceMessageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Publishing/IResourceMessageFactory.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Publishing/IResourceMessageFactoryResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Publishing/IResourceMessageFactoryResolver.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Publishing/InMemoryPublishingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Publishing/InMemoryPublishingContext.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Publishing/InMemoryPublishingContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Publishing/InMemoryPublishingContextFactory.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Publishing/PublishResourceMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Publishing/PublishResourceMapper.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Publishing/PublishedResourceMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Publishing/PublishedResourceMatcher.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Publishing/PublisherHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Publishing/PublisherHelper.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Publishing/PublishingContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Publishing/PublishingContextExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Publishing/PublishingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Publishing/PublishingService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Publishing/ResourceMessageFactoryResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Publishing/ResourceMessageFactoryResolver.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Publishing/ResourcePublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Publishing/ResourcePublisher.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Publishing/ResourcePublishingLogRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Publishing/ResourcePublishingLogRequest.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Publishing/TenantResourceMessageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Publishing/TenantResourceMessageFactory.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Resources/IResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Resources/IResourceManager.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Resources/IResourceServiceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Resources/IResourceServiceResolver.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Resources/ITenantResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Resources/ITenantResourceService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Resources/ResourceAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Resources/ResourceAuthoring.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Resources/ResourceChangeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Resources/ResourceChangeContext.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Resources/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Resources/ResourceManager.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Resources/ResourceServiceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Resources/ResourceServiceResolver.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Resources/ResourceStores.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Resources/ResourceStores.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Resources/ResourceVersionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Resources/ResourceVersionExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Resources/TenantResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Resources/TenantResourceService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/SaveResourceAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/SaveResourceAction.cs -------------------------------------------------------------------------------- /src/Server/src/Core/SecretService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/SecretService.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Security/DefaultUserContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Security/DefaultUserContext.cs -------------------------------------------------------------------------------- /src/Server/src/Core/Telemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/Telemetry.cs -------------------------------------------------------------------------------- /src/Server/src/Core/UserTenantService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Core/UserTenantService.cs -------------------------------------------------------------------------------- /src/Server/src/Encryption.KeyVault/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Encryption.KeyVault/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Server/src/Encryption.KeyVault/AzureKeyVaultExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Encryption.KeyVault/AzureKeyVaultExtension.cs -------------------------------------------------------------------------------- /src/Server/src/Encryption.KeyVault/CryptographyClientProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Encryption.KeyVault/CryptographyClientProvider.cs -------------------------------------------------------------------------------- /src/Server/src/Encryption.KeyVault/Encryption.KeyVault.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Encryption.KeyVault/Encryption.KeyVault.csproj -------------------------------------------------------------------------------- /src/Server/src/Encryption.KeyVault/ICryptographyClientProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Encryption.KeyVault/ICryptographyClientProvider.cs -------------------------------------------------------------------------------- /src/Server/src/Encryption.KeyVault/KeyVaultEncryptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Encryption.KeyVault/KeyVaultEncryptionService.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ApiResource/ApiResourceMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ApiResource/ApiResourceMutations.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ApiResource/ApiResourceQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ApiResource/ApiResourceQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ApiResource/ApiResourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ApiResource/ApiResourceType.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ApiResource/GetApiResourcesInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ApiResource/GetApiResourcesInput.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ApiScope/ApiScopeMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ApiScope/ApiScopeMutations.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ApiScope/ApiScopeQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ApiScope/ApiScopeQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ApiScope/ApiScopeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ApiScope/ApiScopeType.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ApiScope/GetApiScopesInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ApiScope/GetApiScopesInput.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ApiScope/SaveApiResourcePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ApiScope/SaveApiResourcePayload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ApiScope/SaveApiScopePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ApiScope/SaveApiScopePayload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Application/ApplicationMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Application/ApplicationMutations.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Application/ApplicationQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Application/ApplicationQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Application/ApplicationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Application/ApplicationType.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Application/CreateApplicationPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Application/CreateApplicationPayload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Application/UpdateApplicationPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Application/UpdateApplicationPayload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Approval/ApprovalMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Approval/ApprovalMutations.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Approval/ApprovalQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Approval/ApprovalQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Authorization/AccessMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Authorization/AccessMode.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Client/AddClientSecretPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Client/AddClientSecretPayload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Client/ClientMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Client/ClientMutations.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Client/ClientQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Client/ClientQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Client/ClientType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Client/ClientType.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Client/PersonalAccessTokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Client/PersonalAccessTokenType.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Client/RequestTokenInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Client/RequestTokenInput.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Client/RequestTokenPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Client/RequestTokenPayload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Client/SaveClientPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Client/SaveClientPayload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Client/TokenRequestDataResultFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Client/TokenRequestDataResultFactory.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ClientTemplate/ClientTemplateMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ClientTemplate/ClientTemplateMutations.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ClientTemplate/ClientTemplateQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ClientTemplate/ClientTemplateQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ClientTemplate/ClientTemplateSecretType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ClientTemplate/ClientTemplateSecretType.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ClientTemplate/ClientTemplateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ClientTemplate/ClientTemplateType.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ClientTemplate/SaveClientTemplatePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ClientTemplate/SaveClientTemplatePayload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Common/EnumString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Common/EnumString.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Common/Payload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Common/Payload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/DataLoaders/ApiScopeByIdDataLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/DataLoaders/ApiScopeByIdDataLoader.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/DataLoaders/ClientTemplateByIdDataLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/DataLoaders/ClientTemplateByIdDataLoader.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/DataLoaders/EnvironmentByIdDataLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/DataLoaders/EnvironmentByIdDataLoader.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/DataLoaders/IdentityServerGroupByIdDataLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/DataLoaders/IdentityServerGroupByIdDataLoader.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/DataLoaders/TenantByIdDataLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/DataLoaders/TenantByIdDataLoader.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Dependencies/DependencyQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Dependencies/DependencyQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Environment/EnvironmentMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Environment/EnvironmentMutations.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Environment/EnvironmentQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Environment/EnvironmentQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Environment/SaveTenantPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Environment/SaveTenantPayload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Extensions/EnumToValueList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Extensions/EnumToValueList.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/GrantType/GrantTypeMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/GrantType/GrantTypeMutations.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/GrantType/GrantTypeQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/GrantType/GrantTypeQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/GrantType/SaveGrantTypePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/GrantType/SaveGrantTypePayload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/GraphQL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/GraphQL.csproj -------------------------------------------------------------------------------- /src/Server/src/GraphQL/GraphQLServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/GraphQLServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Hashing/HashAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Hashing/HashAlgorithm.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Hashing/HashAlgorithmQueryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Hashing/HashAlgorithmQueryExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/IdentityResource/GetIdentityResourcesInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/IdentityResource/GetIdentityResourcesInput.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/IdentityResource/IdentityResourceMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/IdentityResource/IdentityResourceMutations.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/IdentityResource/IdentityResourceQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/IdentityResource/IdentityResourceQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/IdentityResource/IdentityResourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/IdentityResource/IdentityResourceType.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/IdentityResource/SaveIdentityResourcePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/IdentityResource/SaveIdentityResourcePayload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/IdentityServer/IdentityServerMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/IdentityServer/IdentityServerMutations.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/IdentityServer/IdentityServerQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/IdentityServer/IdentityServerQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/IdentityServer/IdentityServerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/IdentityServer/IdentityServerType.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/IdentityServer/SaveIdentityServerGroupPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/IdentityServer/SaveIdentityServerGroupPayload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/IdentityServer/SaveIdentityServerPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/IdentityServer/SaveIdentityServerPayload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Insights/IdentityServerEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Insights/IdentityServerEventType.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Insights/InsightsQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Insights/InsightsQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Publishing/PublishMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Publishing/PublishMutations.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Publishing/PublishQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Publishing/PublishQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ResouceAudit/ResourceAuditQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ResouceAudit/ResourceAuditQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/ResourceInterfaceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/ResourceInterfaceType.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/RootTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/RootTypes.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Tenant/SaveTenantPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Tenant/SaveTenantPayload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Tenant/TenantMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Tenant/TenantMutations.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/Tenant/TenantQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/Tenant/TenantQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/User/UserQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/User/UserQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/User/UserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/User/UserType.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/UserClaimRule/GetUserClaimRulesInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/UserClaimRule/GetUserClaimRulesInput.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/UserClaimRule/SaveUserClaimRulePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/UserClaimRule/SaveUserClaimRulePayload.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/UserClaimRule/UserClaimRuleMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/UserClaimRule/UserClaimRuleMutations.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/UserClaimRule/UserClaimRuleQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/UserClaimRule/UserClaimRuleQueries.cs -------------------------------------------------------------------------------- /src/Server/src/GraphQL/UserClaimRule/UserClaimRuleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/GraphQL/UserClaimRule/UserClaimRuleType.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/ApiResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/ApiResourceStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/ApiScopeStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/ApiScopeStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/ApplicationStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/ApplicationStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/ClientStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/ClientStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/ClientTemplateStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/ClientTemplateStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/CollectionExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/CollectionNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/CollectionNames.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/EnvironmentStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/EnvironmentStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/GrantTypeStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/GrantTypeStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/IIdOpsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/IIdOpsDbContext.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/IdOpsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/IdOpsDbContext.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/IdentityResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/IdentityResourceStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/IdentityServerEventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/IdentityServerEventStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/IdentityServerGroupStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/IdentityServerGroupStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/IdentityServerStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/IdentityServerStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/PersonalAccessTokenStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/PersonalAccessTokenStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/ResouceAuditStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/ResouceAuditStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/ResourceApprovalLogStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/ResourceApprovalLogStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/ResourceApprovalStateStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/ResourceApprovalStateStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/ResourcePublishLogStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/ResourcePublishLogStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/ResourcePublishStateStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/ResourcePublishStateStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/ResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/ResourceStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/Store.Mongo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/Store.Mongo.csproj -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/StoreServerCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/StoreServerCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/TenantResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/TenantResourceStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/TenantStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/TenantStore.cs -------------------------------------------------------------------------------- /src/Server/src/Store.Mongo/UserClaimRulesStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/src/Store.Mongo/UserClaimRulesStore.cs -------------------------------------------------------------------------------- /src/Server/test/AuthTokenGenerator.Tests/IdentityServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/AuthTokenGenerator.Tests/IdentityServiceTests.cs -------------------------------------------------------------------------------- /src/Server/test/Core.Tests/ApplicationServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Core.Tests/ApplicationServiceTests.cs -------------------------------------------------------------------------------- /src/Server/test/Core.Tests/ClientTemplateServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Core.Tests/ClientTemplateServiceTests.cs -------------------------------------------------------------------------------- /src/Server/test/Core.Tests/Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Core.Tests/Core.Tests.csproj -------------------------------------------------------------------------------- /src/Server/test/Core.Tests/ServiceTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Core.Tests/ServiceTestsBase.cs -------------------------------------------------------------------------------- /src/Server/test/Core.Tests/StubUserContextAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Core.Tests/StubUserContextAccessor.cs -------------------------------------------------------------------------------- /src/Server/test/Core.Tests/TemplateServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Core.Tests/TemplateServiceTests.cs -------------------------------------------------------------------------------- /src/Server/test/Core.Tests/TenantServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Core.Tests/TenantServiceTests.cs -------------------------------------------------------------------------------- /src/Server/test/Core.Tests/__snapshots__/Foo1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Core.Tests/__snapshots__/Foo1.snap -------------------------------------------------------------------------------- /src/Server/test/Encryption.KeyVault.Tests/KeyVaultControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Encryption.KeyVault.Tests/KeyVaultControllerTests.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/ApiScopeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/ApiScopeTests.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/ApplicationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/ApplicationTests.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/ClientTemplateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/ClientTemplateTests.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/ClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/ClientTests.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/GraphQL.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/GraphQL.Tests.csproj -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/HttpContextEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/HttpContextEnricher.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/ITestRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/ITestRequestBuilder.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/MongoCollectionFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/MongoCollectionFixture.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/RepositoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/RepositoryTest.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/SchemaTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/SchemaTest.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/TenantTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/TenantTests.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/TestDataBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/TestDataBuilder.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/TestDataBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/TestDataBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/TestHelper.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/TestRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/TestRequestBuilder.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/TestRequestBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/TestRequestBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/__operations__/CreateApplication.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/__operations__/CreateApplication.graphql -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/__operations__/CreateClient.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/__operations__/CreateClient.graphql -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/__operations__/GetApiScopes.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/__operations__/GetApiScopes.graphql -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/__operations__/GetClientTemplates.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/__operations__/GetClientTemplates.graphql -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/__operations__/GetTenants.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/__operations__/GetTenants.graphql -------------------------------------------------------------------------------- /src/Server/test/GraphQL.Tests/__snapshots__/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/GraphQL.Tests/__snapshots__/schema.graphql -------------------------------------------------------------------------------- /src/Server/test/Host.Tests/Host.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Host.Tests/Host.Tests.csproj -------------------------------------------------------------------------------- /src/Server/test/Host.Tests/IdOpsTestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Host.Tests/IdOpsTestServer.cs -------------------------------------------------------------------------------- /src/Server/test/Host.Tests/StatupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Host.Tests/StatupTests.cs -------------------------------------------------------------------------------- /src/Server/test/Host.Tests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Host.Tests/appsettings.json -------------------------------------------------------------------------------- /src/Server/test/Store.Mongo.Tests/ApiResourceStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Store.Mongo.Tests/ApiResourceStoreTests.cs -------------------------------------------------------------------------------- /src/Server/test/Store.Mongo.Tests/ClientStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Store.Mongo.Tests/ClientStoreTests.cs -------------------------------------------------------------------------------- /src/Server/test/Store.Mongo.Tests/IdentityResourceStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Store.Mongo.Tests/IdentityResourceStoreTests.cs -------------------------------------------------------------------------------- /src/Server/test/Store.Mongo.Tests/PersonalAccessTokenStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Store.Mongo.Tests/PersonalAccessTokenStoreTests.cs -------------------------------------------------------------------------------- /src/Server/test/Store.Mongo.Tests/Store.Mongo.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Store.Mongo.Tests/Store.Mongo.Tests.csproj -------------------------------------------------------------------------------- /src/Server/test/Store.Mongo.Tests/TestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/test/Store.Mongo.Tests/TestData.cs -------------------------------------------------------------------------------- /src/Server/tools/IdOps.Importer/ApiResourceImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/tools/IdOps.Importer/ApiResourceImport.cs -------------------------------------------------------------------------------- /src/Server/tools/IdOps.Importer/IdOps.Importer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/tools/IdOps.Importer/IdOps.Importer.csproj -------------------------------------------------------------------------------- /src/Server/tools/IdOps.Importer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/tools/IdOps.Importer/Program.cs -------------------------------------------------------------------------------- /src/Server/tools/IdOps.Importer/ResourceImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/tools/IdOps.Importer/ResourceImporter.cs -------------------------------------------------------------------------------- /src/Server/tools/IdOps.Importer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/Server/tools/IdOps.Importer/appsettings.json -------------------------------------------------------------------------------- /src/UI/.env: -------------------------------------------------------------------------------- 1 | API_BASE_URL=http://localhost:5000/ -------------------------------------------------------------------------------- /src/UI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/.gitignore -------------------------------------------------------------------------------- /src/UI/apollo.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/apollo.config.js -------------------------------------------------------------------------------- /src/UI/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/babel.config.js -------------------------------------------------------------------------------- /src/UI/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/jsconfig.json -------------------------------------------------------------------------------- /src/UI/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/package.json -------------------------------------------------------------------------------- /src/UI/public/assets/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/assets/fonts.css -------------------------------------------------------------------------------- /src/UI/public/assets/materialdesignicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/assets/materialdesignicons.min.css -------------------------------------------------------------------------------- /src/UI/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/favicon.ico -------------------------------------------------------------------------------- /src/UI/public/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /src/UI/public/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /src/UI/public/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /src/UI/public/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /src/UI/public/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /src/UI/public/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /src/UI/public/img/icons/android-chrome-maskable-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/android-chrome-maskable-192x192.png -------------------------------------------------------------------------------- /src/UI/public/img/icons/android-chrome-maskable-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/android-chrome-maskable-512x512.png -------------------------------------------------------------------------------- /src/UI/public/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /src/UI/public/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /src/UI/public/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /src/UI/public/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /src/UI/public/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /src/UI/public/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /src/UI/public/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /src/UI/public/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /src/UI/public/img/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/favicon.ico -------------------------------------------------------------------------------- /src/UI/public/img/icons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/manifest.json -------------------------------------------------------------------------------- /src/UI/public/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /src/UI/public/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /src/UI/public/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/img/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /src/UI/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/index.html -------------------------------------------------------------------------------- /src/UI/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/manifest.json -------------------------------------------------------------------------------- /src/UI/public/sw-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/public/sw-dev.js -------------------------------------------------------------------------------- /src/UI/src/apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/apollo.js -------------------------------------------------------------------------------- /src/UI/src/components/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/App.vue -------------------------------------------------------------------------------- /src/UI/src/components/Application/ApplicationCreatedView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Application/ApplicationCreatedView.vue -------------------------------------------------------------------------------- /src/UI/src/components/Application/ApplicationView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Application/ApplicationView.vue -------------------------------------------------------------------------------- /src/UI/src/components/Application/CreateApplicationView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Application/CreateApplicationView.vue -------------------------------------------------------------------------------- /src/UI/src/components/Application/EditApplicationView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Application/EditApplicationView.vue -------------------------------------------------------------------------------- /src/UI/src/components/Approval/ApprovalPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Approval/ApprovalPage.vue -------------------------------------------------------------------------------- /src/UI/src/components/Approval/ApproveAllView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Approval/ApproveAllView.vue -------------------------------------------------------------------------------- /src/UI/src/components/Common/AccessDenied.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Common/AccessDenied.vue -------------------------------------------------------------------------------- /src/UI/src/components/Common/ComboBoxEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Common/ComboBoxEditor.vue -------------------------------------------------------------------------------- /src/UI/src/components/Common/PropertyList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Common/PropertyList.vue -------------------------------------------------------------------------------- /src/UI/src/components/Common/SessionExpired.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Common/SessionExpired.vue -------------------------------------------------------------------------------- /src/UI/src/components/Common/SignalShell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Common/SignalShell.vue -------------------------------------------------------------------------------- /src/UI/src/components/Common/SubNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Common/SubNavigation.vue -------------------------------------------------------------------------------- /src/UI/src/components/Common/TenantSelectorMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Common/TenantSelectorMenu.vue -------------------------------------------------------------------------------- /src/UI/src/components/Insights/IdentityServerEventsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Insights/IdentityServerEventsView.vue -------------------------------------------------------------------------------- /src/UI/src/components/Insights/InsightsDetailCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Insights/InsightsDetailCard.vue -------------------------------------------------------------------------------- /src/UI/src/components/Insights/InsightsPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Insights/InsightsPage.vue -------------------------------------------------------------------------------- /src/UI/src/components/Publish/PublishAllView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Publish/PublishAllView.vue -------------------------------------------------------------------------------- /src/UI/src/components/Publish/PublishPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/Publish/PublishPage.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/AddPatSecret.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/AddPatSecret.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/AddSecret.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/AddSecret.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/ApiResourceView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/ApiResourceView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/ApiScopeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/ApiScopeView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/ClientTemplateView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/ClientTemplateView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/ClientView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/ClientView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/CreateClientView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/CreateClientView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/CreatePersonalAccessTokenView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/CreatePersonalAccessTokenView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/DataConnectorModule.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/DataConnectorModule.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/EditApiResourceView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/EditApiResourceView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/EditApiScopeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/EditApiScopeView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/EditClientTemplateView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/EditClientTemplateView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/EditClientView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/EditClientView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/EditGrantTypeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/EditGrantTypeView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/EditIdentityResourceView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/EditIdentityResourceView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/EditPersonalAccessTokenView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/EditPersonalAccessTokenView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/GrantTypeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/GrantTypeView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/IdentityProviders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/IdentityProviders.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/IdentityResourceView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/IdentityResourceView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/PatSecretList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/PatSecretList.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/PersonalAccessTokenView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/PersonalAccessTokenView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/ResourceAuditList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/ResourceAuditList.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/ResourceAuthorPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/ResourceAuthorPage.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/ResourceDependenciesView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/ResourceDependenciesView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/ResourceEditCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/ResourceEditCard.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/ResourceLogView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/ResourceLogView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/ResourcePublishView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/ResourcePublishView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/ResourceTokenView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/ResourceTokenView.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/SecretList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/SecretList.vue -------------------------------------------------------------------------------- /src/UI/src/components/ResourceAuthor/TokenRequestDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/ResourceAuthor/TokenRequestDialog.vue -------------------------------------------------------------------------------- /src/UI/src/components/System/EditEnvironmentView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/System/EditEnvironmentView.vue -------------------------------------------------------------------------------- /src/UI/src/components/System/EditIdentityServerGroupView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/System/EditIdentityServerGroupView.vue -------------------------------------------------------------------------------- /src/UI/src/components/System/EditIdentityServerView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/System/EditIdentityServerView.vue -------------------------------------------------------------------------------- /src/UI/src/components/System/EditTenantView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/System/EditTenantView.vue -------------------------------------------------------------------------------- /src/UI/src/components/System/EnvironmentView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/System/EnvironmentView.vue -------------------------------------------------------------------------------- /src/UI/src/components/System/IdentityServerGroupView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/System/IdentityServerGroupView.vue -------------------------------------------------------------------------------- /src/UI/src/components/System/IdentityServerView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/System/IdentityServerView.vue -------------------------------------------------------------------------------- /src/UI/src/components/System/SystemPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/System/SystemPage.vue -------------------------------------------------------------------------------- /src/UI/src/components/System/TenantView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/System/TenantView.vue -------------------------------------------------------------------------------- /src/UI/src/components/User/MeLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/User/MeLoader.vue -------------------------------------------------------------------------------- /src/UI/src/components/UserClaimRules/EditUserClaimsRulesView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/UserClaimRules/EditUserClaimsRulesView.vue -------------------------------------------------------------------------------- /src/UI/src/components/UserClaimRules/RulesView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/UserClaimRules/RulesView.vue -------------------------------------------------------------------------------- /src/UI/src/components/UserClaimRules/UserClaimRulesPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/UserClaimRules/UserClaimRulesPage.vue -------------------------------------------------------------------------------- /src/UI/src/components/UserClaimRules/UserClaimsRulesView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/components/UserClaimRules/UserClaimsRulesView.vue -------------------------------------------------------------------------------- /src/UI/src/graphql/ApiResource/AddSecret.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/ApiResource/AddSecret.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/ApiResource/Fragments.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/ApiResource/Fragments.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/ApiResource/GetAll.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/ApiResource/GetAll.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/ApiResource/RemoveSecret.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/ApiResource/RemoveSecret.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/ApiResource/Save.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/ApiResource/Save.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/ApiScope/Fragments.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/ApiScope/Fragments.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/ApiScope/GetAll.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/ApiScope/GetAll.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/ApiScope/Save.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/ApiScope/Save.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Application/AddClient.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Application/AddClient.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Application/AddEnvironment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Application/AddEnvironment.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Application/ApplicationFragment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Application/ApplicationFragment.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Application/ClientInfoFragment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Application/ClientInfoFragment.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Application/Create.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Application/Create.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Application/GetById.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Application/GetById.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Application/RemoveClient.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Application/RemoveClient.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Application/Search.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Application/Search.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Application/Update.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Application/Update.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Approval/Approve.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Approval/Approve.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Approval/Get.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Approval/Get.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Approval/Log.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Approval/Log.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Client/AddSecret.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Client/AddSecret.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Client/Create.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Client/Create.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Client/Fragments.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Client/Fragments.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Client/GetById.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Client/GetById.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Client/GetToken.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Client/GetToken.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Client/RemoveSecret.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Client/RemoveSecret.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Client/Search.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Client/Search.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Client/SearchUnMapped.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Client/SearchUnMapped.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Client/Update.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Client/Update.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/ClientTemplate/All.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/ClientTemplate/All.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/ClientTemplate/Fragments.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/ClientTemplate/Fragments.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/ClientTemplate/GetById.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/ClientTemplate/GetById.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/ClientTemplate/Save.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/ClientTemplate/Save.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/ClientTemplate/Secrets.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/ClientTemplate/Secrets.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Dependency/GetAllDependencies.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Dependency/GetAllDependencies.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Environment/GetAll.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Environment/GetAll.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Environment/Save.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Environment/Save.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/GrantType/Save.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/GrantType/Save.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/IdentityResource/Fragments.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/IdentityResource/Fragments.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/IdentityResource/GetAll.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/IdentityResource/GetAll.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/IdentityResource/Save.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/IdentityResource/Save.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/IdentityServer/Fragments.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/IdentityServer/Fragments.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/IdentityServer/GetAll.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/IdentityServer/GetAll.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/IdentityServer/GetById.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/IdentityServer/GetById.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/IdentityServer/Save.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/IdentityServer/Save.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/IdentityServerGroup/Fragments.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/IdentityServerGroup/Fragments.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/IdentityServerGroup/GetByTenant.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/IdentityServerGroup/GetByTenant.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/IdentityServerGroup/Save.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/IdentityServerGroup/Save.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Insights/SearchIdentityServerEvents.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Insights/SearchIdentityServerEvents.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/PersonalAccessToken/AddSecret.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/PersonalAccessToken/AddSecret.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/PersonalAccessToken/Create.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/PersonalAccessToken/Create.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/PersonalAccessToken/Fragments.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/PersonalAccessToken/Fragments.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/PersonalAccessToken/GetAll.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/PersonalAccessToken/GetAll.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/PersonalAccessToken/GetById.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/PersonalAccessToken/GetById.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/PersonalAccessToken/RemoveSecret.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/PersonalAccessToken/RemoveSecret.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/PersonalAccessToken/Search.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/PersonalAccessToken/Search.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/PersonalAccessToken/Update.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/PersonalAccessToken/Update.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Publishing/Get.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Publishing/Get.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Publishing/Log.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Publishing/Log.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Publishing/Publish.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Publishing/Publish.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/ResourceAudit/Search.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/ResourceAudit/Search.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/ResourceData.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/ResourceData.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/SystemData.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/SystemData.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Tenant/GetAll.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Tenant/GetAll.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/Tenant/Save.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/Tenant/Save.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/User/GetMe.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/User/GetMe.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/UserClaimRule/Fragments.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/UserClaimRule/Fragments.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/UserClaimRule/GetAll.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/UserClaimRule/GetAll.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/UserClaimRule/GetById.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/UserClaimRule/GetById.gql -------------------------------------------------------------------------------- /src/UI/src/graphql/UserClaimRule/Save.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/graphql/UserClaimRule/Save.gql -------------------------------------------------------------------------------- /src/UI/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/main.js -------------------------------------------------------------------------------- /src/UI/src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/plugins/vuetify.js -------------------------------------------------------------------------------- /src/UI/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/UI/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/router.js -------------------------------------------------------------------------------- /src/UI/src/services/applicationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/services/applicationService.js -------------------------------------------------------------------------------- /src/UI/src/services/approvalService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/services/approvalService.js -------------------------------------------------------------------------------- /src/UI/src/services/idResourceService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/services/idResourceService.js -------------------------------------------------------------------------------- /src/UI/src/services/insightsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/services/insightsService.js -------------------------------------------------------------------------------- /src/UI/src/services/personalAccessTokenService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/services/personalAccessTokenService.js -------------------------------------------------------------------------------- /src/UI/src/services/publishingService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/services/publishingService.js -------------------------------------------------------------------------------- /src/UI/src/services/systemService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/services/systemService.js -------------------------------------------------------------------------------- /src/UI/src/services/tokenFlowService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/services/tokenFlowService -------------------------------------------------------------------------------- /src/UI/src/services/userClaimsRuleService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/services/userClaimsRuleService.js -------------------------------------------------------------------------------- /src/UI/src/services/userService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/services/userService.js -------------------------------------------------------------------------------- /src/UI/src/signalrHub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/signalrHub.js -------------------------------------------------------------------------------- /src/UI/src/store/applicationStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/store/applicationStore.js -------------------------------------------------------------------------------- /src/UI/src/store/graphqlClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/store/graphqlClient.js -------------------------------------------------------------------------------- /src/UI/src/store/idResourceStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/store/idResourceStore.js -------------------------------------------------------------------------------- /src/UI/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/store/index.js -------------------------------------------------------------------------------- /src/UI/src/store/insightsStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/store/insightsStore.js -------------------------------------------------------------------------------- /src/UI/src/store/shellStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/store/shellStore.js -------------------------------------------------------------------------------- /src/UI/src/store/systemStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/store/systemStore.js -------------------------------------------------------------------------------- /src/UI/src/store/userClaimRuleStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/store/userClaimRuleStore.js -------------------------------------------------------------------------------- /src/UI/src/store/userStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/store/userStore.js -------------------------------------------------------------------------------- /src/UI/src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/styles/variables.scss -------------------------------------------------------------------------------- /src/UI/src/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/src/sw.js -------------------------------------------------------------------------------- /src/UI/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/vue.config.js -------------------------------------------------------------------------------- /src/UI/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/src/UI/yarn.lock -------------------------------------------------------------------------------- /tye.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwissLife-OSS/IdOps/HEAD/tye.yaml --------------------------------------------------------------------------------