├── .editorconfig ├── .github └── ISSUE_TEMPLATE │ └── bug.yaml ├── .run └── Dev Environment.run.xml ├── .shopware-extension.yml ├── CHANGELOG.md ├── CHANGELOG_de-DE.md ├── CLA.md ├── LICENSE.md ├── README.md ├── bitbucket-pipelines.yml ├── composer.json ├── docker-compose.yml ├── security.txt └── src ├── Component ├── OpenAuth │ ├── Atlassian.php │ ├── AuthorizationServer.php │ ├── OneTimeTokenGrant.php │ └── Rule │ │ ├── EmailRule.php │ │ ├── LocaleRule.php │ │ ├── PrimaryKeyRule.php │ │ └── TimeZoneRule.php ├── OpenIdConnect │ ├── OpenIdConnectConfiguration.php │ ├── OpenIdConnectException.php │ ├── OpenIdConnectRequestHelper.php │ ├── OpenIdConnectService.php │ ├── OpenIdConnectToken.php │ ├── OpenIdConnectTokenVerifier.php │ ├── OpenIdConnectUser.php │ └── Rule │ │ ├── AuthenticatedODataRequestRule.php │ │ ├── AuthenticatedRequestException.php │ │ ├── AuthenticatedRequestRule.php │ │ ├── CachedRequestNotFoundException.php │ │ ├── IdTokenRule.php │ │ ├── JMESPathValidation.php │ │ └── MicrosoftEntraIdOidcGroupsRule.php ├── Provider │ ├── DefaultInjectingEntityWriterDecorator.php │ ├── JiraClient.php │ ├── OpenIdConnectClient.php │ └── Saml2ServiceProviderClient.php └── Saml │ ├── Rule │ └── Saml2RoleRule.php │ ├── Saml2Exception.php │ ├── Saml2RequestHelper.php │ ├── Saml2ServiceProviderConfiguration.php │ ├── Saml2ServiceProviderService.php │ └── Saml2UserData.php ├── Contract ├── Client │ ├── ClientContract.php │ ├── ClientFactoryContract.php │ └── Exception │ │ ├── FactorizeClientException.php │ │ ├── FactorizeClientInvalidConfigurationException.php │ │ ├── FactorizeClientProviderFailedException.php │ │ └── FactorizeClientProviderNotFoundException.php ├── ClientFeatureCheckerInterface.php ├── ClientLoaderInterface.php ├── ClientProvider │ ├── ClientProviderContract.php │ ├── ClientProviderRepositoryContract.php │ └── Exception │ │ └── ProvideClientException.php ├── ConfigurationRefresherClientProviderContract.php ├── LoginInterface.php ├── MetadataClientContract.php ├── ModifiedRedirectBehaviourClientContract.php ├── OAuthRuleScope.php ├── OpenAuthenticationFlowInterface.php ├── RedirectBehaviour.php ├── RedirectBehaviourFactoryInterface.php ├── RoleAssignment.php ├── Route │ └── Exception │ │ ├── RedirectReceiveException.php │ │ └── RedirectReceiveMissingStateException.php ├── RuleActionInterface.php ├── RuleContract.php ├── StateFactory │ ├── ConfirmStateFactoryInterface.php │ ├── ConnectStateFactoryInterface.php │ └── LoginStateFactoryInterface.php ├── TokenPair.php ├── User.php ├── UserEmailInterface.php ├── UserKeyInterface.php ├── UserResolverInterface.php └── UserTokenInterface.php ├── Database ├── ClientCollection.php ├── ClientDefinition.php ├── ClientEntity.php ├── ClientRuleCollection.php ├── ClientRuleConditionCollection.php ├── ClientRuleConditionDefinition.php ├── ClientRuleConditionEntity.php ├── ClientRuleDefinition.php ├── ClientRuleEntity.php ├── LoginCollection.php ├── LoginDefinition.php ├── LoginEntity.php ├── UserEmailCollection.php ├── UserEmailDefinition.php ├── UserEmailEntity.php ├── UserKeyCollection.php ├── UserKeyDefinition.php ├── UserKeyEntity.php ├── UserTokenCollection.php ├── UserTokenDefinition.php └── UserTokenEntity.php ├── Exception ├── LoadClientClientNotFoundException.php ├── LoadClientException.php └── UserMismatchException.php ├── Http └── Route │ ├── AdminRuleActionsRoute.php │ ├── AdminUserClientConfirmRoute.php │ ├── AdminUserClientCreateRoute.php │ ├── AdminUserClientDisconnectRoute.php │ ├── AdminUserClientListRoute.php │ ├── AdminUserClientMetadataUrlRoute.php │ ├── AdminUserClientRedirectUrlRoute.php │ ├── AdminUserClientRemoteConnectRoute.php │ ├── AdminUserProviderListRoute.php │ ├── ClientLoginRoutesRoute.php │ ├── ClientMetadataRoute.php │ ├── ClientRedirectRoute.php │ ├── ClientRemoteLoginRoute.php │ ├── ConfirmationMessageRoute.php │ └── Support │ ├── RedirectReceiveRoute.php │ ├── UserRedirectAuthenticationEvent.php │ └── UserRedirectReceivedEvent.php ├── KskHeptacomAdminOpenAuth.php ├── Migration ├── Migration1582483949.php ├── Migration1582483950.php ├── Migration1582483951.php ├── Migration1582483952.php ├── Migration1582547243.php ├── Migration1582942221.php ├── Migration1583086914.php ├── Migration1583709658.php ├── Migration1583709659.php ├── Migration1583709660.php ├── Migration1583709661.php ├── Migration1583709700.php ├── Migration1583709701.php ├── Migration1583709702.php ├── Migration1583709900.php ├── Migration1583830534.php ├── Migration1659509400FlagUserBecomeAdmin.php ├── Migration1661525744ForeignKeyCascade.php ├── Migration1661561042AddLoginPayload.php ├── Migration1661850983AddDefaultRoles.php ├── Migration1661868779FlagKeepUserUpdated.php ├── Migration1666400732AddConfigurationProperty.php ├── Migration1685517454AddLoginRestrictions.php ├── Migration1685517455SetExpiredAndTypeToRequiredFields.php ├── Migration1693915434MigrateSamlConfigRequestedAuthnContext.php ├── Migration1702116999AddRuleTables.php ├── Migration1702377314MigrateRoleAssignment.php ├── Migration1702401151RemoveUnusedConfiguration.php ├── Migration1702921670AddStopOnMatch.php ├── Migration1720193260MigrateToRuleActions.php ├── Migration1747401001RenameAzureToEntra.php └── Migration1747405651ReaddKeepUserUpdated.php ├── OpenAuth └── OneTimeTokenScopeRepository.php ├── Resources ├── app │ └── administration │ │ ├── src │ │ ├── app │ │ │ ├── components │ │ │ │ ├── heptacom-admin-open-auth-url-field │ │ │ │ │ └── index.js │ │ │ │ └── heptacom-admin-open-auth-user-confirm-login │ │ │ │ │ ├── heptacom-admin-open-auth-user-confirm-login.html.twig │ │ │ │ │ ├── heptacom-admin-open-auth-user-confirm-login.scss │ │ │ │ │ ├── index.js │ │ │ │ │ └── snippet │ │ │ │ │ ├── de-DE.json │ │ │ │ │ └── en-GB.json │ │ │ └── index.js │ │ ├── extension │ │ │ ├── snippet │ │ │ │ ├── de-DE.json │ │ │ │ └── en-GB.json │ │ │ ├── sw-profile-index-general │ │ │ │ ├── index.js │ │ │ │ └── sw-profile-index-general.html.twig │ │ │ └── sw-verify-user-modal │ │ │ │ ├── index.js │ │ │ │ └── sw-verify-user-modal.html.twig │ │ ├── init │ │ │ └── services.init.js │ │ ├── main.js │ │ ├── module │ │ │ └── heptacom-admin-open-auth-client │ │ │ │ ├── acl │ │ │ │ └── index.js │ │ │ │ ├── component │ │ │ │ ├── role-assignment-action-config │ │ │ │ │ ├── index.js │ │ │ │ │ └── role-assignment-action-config.html.twig │ │ │ │ ├── rule-container │ │ │ │ │ ├── index.js │ │ │ │ │ └── rule-container.html.twig │ │ │ │ └── rule-item │ │ │ │ │ ├── index.js │ │ │ │ │ ├── rule-item.html.twig │ │ │ │ │ └── rule-item.scss │ │ │ │ ├── index.js │ │ │ │ ├── page │ │ │ │ ├── create │ │ │ │ │ ├── heptacom-admin-open-auth-client-create-page.html.twig │ │ │ │ │ ├── heptacom-admin-open-auth-client-create-page.scss │ │ │ │ │ └── index.js │ │ │ │ ├── edit │ │ │ │ │ ├── heptacom-admin-open-auth-client-edit-page.html.twig │ │ │ │ │ ├── heptacom-admin-open-auth-client-edit-page.scss │ │ │ │ │ └── index.js │ │ │ │ └── listing │ │ │ │ │ ├── heptacom-admin-open-auth-client-listing-page.html.twig │ │ │ │ │ ├── heptacom-admin-open-auth-client-listing-page.scss │ │ │ │ │ └── index.js │ │ │ │ └── snippet │ │ │ │ ├── de-DE.json │ │ │ │ └── en-GB.json │ │ ├── provider │ │ │ ├── cidaas │ │ │ │ ├── components │ │ │ │ │ └── provider-settings │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── provider-settings.html.twig │ │ │ │ └── snippet │ │ │ │ │ ├── de-DE.json │ │ │ │ │ └── en-GB.json │ │ │ ├── google_cloud │ │ │ │ ├── components │ │ │ │ │ └── provider-settings │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── provider-settings.html.twig │ │ │ │ └── snippet │ │ │ │ │ ├── de-DE.json │ │ │ │ │ └── en-GB.json │ │ │ ├── index.js │ │ │ ├── jira │ │ │ │ ├── components │ │ │ │ │ └── provider-settings │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── provider-settings.html.twig │ │ │ │ └── snippet │ │ │ │ │ ├── de-DE.json │ │ │ │ │ └── en-GB.json │ │ │ ├── jumpcloud │ │ │ │ ├── components │ │ │ │ │ └── provider-settings │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── provider-settings.html.twig │ │ │ │ ├── overrides │ │ │ │ │ └── heptacom-admin-open-auth-client-edit-page │ │ │ │ │ │ ├── heptacom-admin-open-auth-client-edit-page.html.twig │ │ │ │ │ │ └── index.js │ │ │ │ └── snippet │ │ │ │ │ ├── de-DE.json │ │ │ │ │ └── en-GB.json │ │ │ ├── keycloak │ │ │ │ ├── components │ │ │ │ │ └── provider-settings │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── provider-settings.html.twig │ │ │ │ └── snippet │ │ │ │ │ ├── de-DE.json │ │ │ │ │ └── en-GB.json │ │ │ ├── microsoft_entra_id_oidc │ │ │ │ ├── components │ │ │ │ │ └── provider-settings │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── provider-settings.html.twig │ │ │ │ ├── decorator │ │ │ │ │ └── condition-type-data-provider.decorator.ts │ │ │ │ └── snippet │ │ │ │ │ ├── de-DE.json │ │ │ │ │ └── en-GB.json │ │ │ ├── okta │ │ │ │ ├── components │ │ │ │ │ └── provider-settings │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── provider-settings.html.twig │ │ │ │ └── snippet │ │ │ │ │ ├── de-DE.json │ │ │ │ │ └── en-GB.json │ │ │ ├── onelogin │ │ │ │ ├── components │ │ │ │ │ └── provider-settings │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── provider-settings.html.twig │ │ │ │ └── snippet │ │ │ │ │ ├── de-DE.json │ │ │ │ │ └── en-GB.json │ │ │ ├── open_id_connect │ │ │ │ ├── components │ │ │ │ │ ├── condition-authenticated-request │ │ │ │ │ │ ├── condition-authenticated-request.html.twig │ │ │ │ │ │ ├── condition-authenticated-request.scss │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── condition-jmes-path │ │ │ │ │ │ ├── condition-jmes-path.html.twig │ │ │ │ │ │ ├── condition-jmes-path.scss │ │ │ │ │ │ └── index.js │ │ │ │ │ └── provider-settings │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── provider-settings.html.twig │ │ │ │ ├── decorator │ │ │ │ │ └── condition-type-data-provider.decorator.ts │ │ │ │ └── snippet │ │ │ │ │ ├── de-DE.json │ │ │ │ │ └── en-GB.json │ │ │ └── saml2 │ │ │ │ ├── components │ │ │ │ └── provider-settings │ │ │ │ │ ├── index.js │ │ │ │ │ └── provider-settings.html.twig │ │ │ │ ├── decorator │ │ │ │ └── condition-type-data-provider.decorator.ts │ │ │ │ ├── overrides │ │ │ │ └── heptacom-admin-open-auth-client-edit-page │ │ │ │ │ ├── heptacom-admin-open-auth-client-edit-page.html.twig │ │ │ │ │ └── index.js │ │ │ │ └── snippet │ │ │ │ ├── de-DE.json │ │ │ │ └── en-GB.json │ │ ├── service │ │ │ ├── api │ │ │ │ ├── heptacom-admin-open-auth-provider.service.js │ │ │ │ └── heptacom-admin-open-auth-rule-actions.service.js │ │ │ ├── condition-type-data-provider.decorator.ts │ │ │ └── heptacom-oauth-rule-data-provider.service.ts │ │ └── snippet │ │ │ ├── de-DE.json │ │ │ └── en-GB.json │ │ └── static │ │ └── logo │ │ ├── cidaas_logo.svg │ │ ├── google_logo.svg │ │ ├── jira_logo.svg │ │ ├── keycloak_logo.svg │ │ ├── microsoft_logo.svg │ │ ├── okta_logo.png │ │ ├── onelogin_logo.svg │ │ ├── openid_logo.svg │ │ └── saml2_logo.svg ├── config │ ├── config.xml │ ├── plugin.png │ ├── routes.xml │ └── services.yml ├── public │ ├── administration │ │ ├── css │ │ │ └── ksk-heptacom-admin-open-auth.css │ │ └── js │ │ │ └── ksk-heptacom-admin-open-auth.js │ └── static │ │ ├── css │ │ ├── 121.css.map │ │ ├── 144.css.map │ │ ├── 352.css.map │ │ ├── 405.css.map │ │ ├── 619.css.map │ │ ├── 638.css │ │ ├── 638.css.map │ │ └── 641.css.map │ │ ├── js │ │ ├── 016a187f0894656b2fcf.js │ │ ├── 097e9df332c39d40568f.js │ │ ├── 1b676c106f23034fa9eb.js │ │ ├── 244fabffc05a1ba7f9ba.js │ │ ├── 3ba168c0e9b1a5f61fd7.js │ │ ├── 45cefbf61fee7824b91d.js │ │ ├── 4b17157d0bd117531ffb.js │ │ ├── 6f41ea409277f977d4d7.js │ │ ├── 6fef1f3746e86bcd411d.js │ │ ├── 8809e559cc7ccbee64f2.js │ │ ├── adbf53ce658353c23309.js │ │ ├── b4604a3667e12d1b9484.js │ │ ├── cbc2f1d9bca2eaf82fe7.js │ │ ├── d15644fd2facb14e21d3.js │ │ ├── e1182a3fcf570dfc9394.js │ │ └── f23129eaf16ccff809d2.js │ │ └── logo │ │ ├── cidaas_logo.svg │ │ ├── google_logo.svg │ │ ├── jira_logo.svg │ │ ├── keycloak_logo.svg │ │ ├── microsoft_logo.svg │ │ ├── okta_logo.png │ │ ├── onelogin_logo.svg │ │ ├── openid_logo.svg │ │ └── saml2_logo.svg └── views │ └── administration │ ├── heptacom-admin-open-auth │ └── page │ │ └── confirm.html.twig │ ├── index-js.html.twig │ └── index.html.twig ├── Service ├── ClientFeatureChecker.php ├── ClientLoader.php ├── Login.php ├── OpenAuth │ └── OneTimeTokenClientRepository.php ├── OpenAuthenticationFlow.php ├── Provider │ ├── CidaasClientEntityWriter.php │ ├── CidaasProvider.php │ ├── GoogleCloudClientEntityWriter.php │ ├── GoogleCloudProvider.php │ ├── JiraClientEntityWriter.php │ ├── JiraProvider.php │ ├── JumpCloudClientEntityWriter.php │ ├── JumpCloudServiceProvider.php │ ├── KeycloakClientEntityWriter.php │ ├── KeycloakProvider.php │ ├── MicrosoftEntraIdOidcClientEntityWriter.php │ ├── MicrosoftEntraIdOidcProvider.php │ ├── OktaClientEntityWriter.php │ ├── OktaProvider.php │ ├── OneLoginClientEntityWriter.php │ ├── OneLoginProvider.php │ ├── OpenIdConnectClientEntityWriter.php │ ├── OpenIdConnectProvider.php │ ├── Saml2ClientEntityWriter.php │ └── Saml2ServiceProvider.php ├── RedirectBehaviourFactoryService.php ├── Rule │ ├── Action │ │ └── RoleAssignment │ │ │ ├── RoleAssignmentAction.php │ │ │ └── RoleAssignmentMissingException.php │ ├── ClientRuleExecutor.php │ └── ClientRuleValidator.php ├── StateFactory │ ├── ConfirmStateFactory.php │ ├── ConnectStateFactory.php │ └── LoginStateFactory.php ├── StateResolver.php ├── TokenPairFactoryContract.php ├── UserEmail.php ├── UserKey.php ├── UserResolver.php └── UserToken.php ├── Subscriber ├── ApiAuthentication.php └── AuthenticationFlowActionExecution.php ├── Task ├── LoginsCleanupTask.php └── LoginsCleanupTaskHandler.php └── Twig └── ConfigExtension.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.run/Dev Environment.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/.run/Dev Environment.run.xml -------------------------------------------------------------------------------- /.shopware-extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/.shopware-extension.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG_de-DE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/CHANGELOG_de-DE.md -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/CLA.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/README.md -------------------------------------------------------------------------------- /bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /security.txt: -------------------------------------------------------------------------------- 1 | Canonical: https://www.heptacom.de/.well-known/security.txt -------------------------------------------------------------------------------- /src/Component/OpenAuth/Atlassian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenAuth/Atlassian.php -------------------------------------------------------------------------------- /src/Component/OpenAuth/AuthorizationServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenAuth/AuthorizationServer.php -------------------------------------------------------------------------------- /src/Component/OpenAuth/OneTimeTokenGrant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenAuth/OneTimeTokenGrant.php -------------------------------------------------------------------------------- /src/Component/OpenAuth/Rule/EmailRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenAuth/Rule/EmailRule.php -------------------------------------------------------------------------------- /src/Component/OpenAuth/Rule/LocaleRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenAuth/Rule/LocaleRule.php -------------------------------------------------------------------------------- /src/Component/OpenAuth/Rule/PrimaryKeyRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenAuth/Rule/PrimaryKeyRule.php -------------------------------------------------------------------------------- /src/Component/OpenAuth/Rule/TimeZoneRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenAuth/Rule/TimeZoneRule.php -------------------------------------------------------------------------------- /src/Component/OpenIdConnect/OpenIdConnectConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenIdConnect/OpenIdConnectConfiguration.php -------------------------------------------------------------------------------- /src/Component/OpenIdConnect/OpenIdConnectException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenIdConnect/OpenIdConnectException.php -------------------------------------------------------------------------------- /src/Component/OpenIdConnect/OpenIdConnectRequestHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenIdConnect/OpenIdConnectRequestHelper.php -------------------------------------------------------------------------------- /src/Component/OpenIdConnect/OpenIdConnectService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenIdConnect/OpenIdConnectService.php -------------------------------------------------------------------------------- /src/Component/OpenIdConnect/OpenIdConnectToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenIdConnect/OpenIdConnectToken.php -------------------------------------------------------------------------------- /src/Component/OpenIdConnect/OpenIdConnectTokenVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenIdConnect/OpenIdConnectTokenVerifier.php -------------------------------------------------------------------------------- /src/Component/OpenIdConnect/OpenIdConnectUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenIdConnect/OpenIdConnectUser.php -------------------------------------------------------------------------------- /src/Component/OpenIdConnect/Rule/AuthenticatedODataRequestRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenIdConnect/Rule/AuthenticatedODataRequestRule.php -------------------------------------------------------------------------------- /src/Component/OpenIdConnect/Rule/AuthenticatedRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenIdConnect/Rule/AuthenticatedRequestException.php -------------------------------------------------------------------------------- /src/Component/OpenIdConnect/Rule/AuthenticatedRequestRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenIdConnect/Rule/AuthenticatedRequestRule.php -------------------------------------------------------------------------------- /src/Component/OpenIdConnect/Rule/CachedRequestNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenIdConnect/Rule/CachedRequestNotFoundException.php -------------------------------------------------------------------------------- /src/Component/OpenIdConnect/Rule/IdTokenRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenIdConnect/Rule/IdTokenRule.php -------------------------------------------------------------------------------- /src/Component/OpenIdConnect/Rule/JMESPathValidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenIdConnect/Rule/JMESPathValidation.php -------------------------------------------------------------------------------- /src/Component/OpenIdConnect/Rule/MicrosoftEntraIdOidcGroupsRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/OpenIdConnect/Rule/MicrosoftEntraIdOidcGroupsRule.php -------------------------------------------------------------------------------- /src/Component/Provider/DefaultInjectingEntityWriterDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/Provider/DefaultInjectingEntityWriterDecorator.php -------------------------------------------------------------------------------- /src/Component/Provider/JiraClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/Provider/JiraClient.php -------------------------------------------------------------------------------- /src/Component/Provider/OpenIdConnectClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/Provider/OpenIdConnectClient.php -------------------------------------------------------------------------------- /src/Component/Provider/Saml2ServiceProviderClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/Provider/Saml2ServiceProviderClient.php -------------------------------------------------------------------------------- /src/Component/Saml/Rule/Saml2RoleRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/Saml/Rule/Saml2RoleRule.php -------------------------------------------------------------------------------- /src/Component/Saml/Saml2Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/Saml/Saml2Exception.php -------------------------------------------------------------------------------- /src/Component/Saml/Saml2RequestHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/Saml/Saml2RequestHelper.php -------------------------------------------------------------------------------- /src/Component/Saml/Saml2ServiceProviderConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/Saml/Saml2ServiceProviderConfiguration.php -------------------------------------------------------------------------------- /src/Component/Saml/Saml2ServiceProviderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/Saml/Saml2ServiceProviderService.php -------------------------------------------------------------------------------- /src/Component/Saml/Saml2UserData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Component/Saml/Saml2UserData.php -------------------------------------------------------------------------------- /src/Contract/Client/ClientContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/Client/ClientContract.php -------------------------------------------------------------------------------- /src/Contract/Client/ClientFactoryContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/Client/ClientFactoryContract.php -------------------------------------------------------------------------------- /src/Contract/Client/Exception/FactorizeClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/Client/Exception/FactorizeClientException.php -------------------------------------------------------------------------------- /src/Contract/Client/Exception/FactorizeClientInvalidConfigurationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/Client/Exception/FactorizeClientInvalidConfigurationException.php -------------------------------------------------------------------------------- /src/Contract/Client/Exception/FactorizeClientProviderFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/Client/Exception/FactorizeClientProviderFailedException.php -------------------------------------------------------------------------------- /src/Contract/Client/Exception/FactorizeClientProviderNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/Client/Exception/FactorizeClientProviderNotFoundException.php -------------------------------------------------------------------------------- /src/Contract/ClientFeatureCheckerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/ClientFeatureCheckerInterface.php -------------------------------------------------------------------------------- /src/Contract/ClientLoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/ClientLoaderInterface.php -------------------------------------------------------------------------------- /src/Contract/ClientProvider/ClientProviderContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/ClientProvider/ClientProviderContract.php -------------------------------------------------------------------------------- /src/Contract/ClientProvider/ClientProviderRepositoryContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/ClientProvider/ClientProviderRepositoryContract.php -------------------------------------------------------------------------------- /src/Contract/ClientProvider/Exception/ProvideClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/ClientProvider/Exception/ProvideClientException.php -------------------------------------------------------------------------------- /src/Contract/ConfigurationRefresherClientProviderContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/ConfigurationRefresherClientProviderContract.php -------------------------------------------------------------------------------- /src/Contract/LoginInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/LoginInterface.php -------------------------------------------------------------------------------- /src/Contract/MetadataClientContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/MetadataClientContract.php -------------------------------------------------------------------------------- /src/Contract/ModifiedRedirectBehaviourClientContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/ModifiedRedirectBehaviourClientContract.php -------------------------------------------------------------------------------- /src/Contract/OAuthRuleScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/OAuthRuleScope.php -------------------------------------------------------------------------------- /src/Contract/OpenAuthenticationFlowInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/OpenAuthenticationFlowInterface.php -------------------------------------------------------------------------------- /src/Contract/RedirectBehaviour.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/RedirectBehaviour.php -------------------------------------------------------------------------------- /src/Contract/RedirectBehaviourFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/RedirectBehaviourFactoryInterface.php -------------------------------------------------------------------------------- /src/Contract/RoleAssignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/RoleAssignment.php -------------------------------------------------------------------------------- /src/Contract/Route/Exception/RedirectReceiveException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/Route/Exception/RedirectReceiveException.php -------------------------------------------------------------------------------- /src/Contract/Route/Exception/RedirectReceiveMissingStateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/Route/Exception/RedirectReceiveMissingStateException.php -------------------------------------------------------------------------------- /src/Contract/RuleActionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/RuleActionInterface.php -------------------------------------------------------------------------------- /src/Contract/RuleContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/RuleContract.php -------------------------------------------------------------------------------- /src/Contract/StateFactory/ConfirmStateFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/StateFactory/ConfirmStateFactoryInterface.php -------------------------------------------------------------------------------- /src/Contract/StateFactory/ConnectStateFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/StateFactory/ConnectStateFactoryInterface.php -------------------------------------------------------------------------------- /src/Contract/StateFactory/LoginStateFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/StateFactory/LoginStateFactoryInterface.php -------------------------------------------------------------------------------- /src/Contract/TokenPair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/TokenPair.php -------------------------------------------------------------------------------- /src/Contract/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/User.php -------------------------------------------------------------------------------- /src/Contract/UserEmailInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/UserEmailInterface.php -------------------------------------------------------------------------------- /src/Contract/UserKeyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/UserKeyInterface.php -------------------------------------------------------------------------------- /src/Contract/UserResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/UserResolverInterface.php -------------------------------------------------------------------------------- /src/Contract/UserTokenInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Contract/UserTokenInterface.php -------------------------------------------------------------------------------- /src/Database/ClientCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/ClientCollection.php -------------------------------------------------------------------------------- /src/Database/ClientDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/ClientDefinition.php -------------------------------------------------------------------------------- /src/Database/ClientEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/ClientEntity.php -------------------------------------------------------------------------------- /src/Database/ClientRuleCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/ClientRuleCollection.php -------------------------------------------------------------------------------- /src/Database/ClientRuleConditionCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/ClientRuleConditionCollection.php -------------------------------------------------------------------------------- /src/Database/ClientRuleConditionDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/ClientRuleConditionDefinition.php -------------------------------------------------------------------------------- /src/Database/ClientRuleConditionEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/ClientRuleConditionEntity.php -------------------------------------------------------------------------------- /src/Database/ClientRuleDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/ClientRuleDefinition.php -------------------------------------------------------------------------------- /src/Database/ClientRuleEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/ClientRuleEntity.php -------------------------------------------------------------------------------- /src/Database/LoginCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/LoginCollection.php -------------------------------------------------------------------------------- /src/Database/LoginDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/LoginDefinition.php -------------------------------------------------------------------------------- /src/Database/LoginEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/LoginEntity.php -------------------------------------------------------------------------------- /src/Database/UserEmailCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/UserEmailCollection.php -------------------------------------------------------------------------------- /src/Database/UserEmailDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/UserEmailDefinition.php -------------------------------------------------------------------------------- /src/Database/UserEmailEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/UserEmailEntity.php -------------------------------------------------------------------------------- /src/Database/UserKeyCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/UserKeyCollection.php -------------------------------------------------------------------------------- /src/Database/UserKeyDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/UserKeyDefinition.php -------------------------------------------------------------------------------- /src/Database/UserKeyEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/UserKeyEntity.php -------------------------------------------------------------------------------- /src/Database/UserTokenCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/UserTokenCollection.php -------------------------------------------------------------------------------- /src/Database/UserTokenDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/UserTokenDefinition.php -------------------------------------------------------------------------------- /src/Database/UserTokenEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Database/UserTokenEntity.php -------------------------------------------------------------------------------- /src/Exception/LoadClientClientNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Exception/LoadClientClientNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/LoadClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Exception/LoadClientException.php -------------------------------------------------------------------------------- /src/Exception/UserMismatchException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Exception/UserMismatchException.php -------------------------------------------------------------------------------- /src/Http/Route/AdminRuleActionsRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/AdminRuleActionsRoute.php -------------------------------------------------------------------------------- /src/Http/Route/AdminUserClientConfirmRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/AdminUserClientConfirmRoute.php -------------------------------------------------------------------------------- /src/Http/Route/AdminUserClientCreateRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/AdminUserClientCreateRoute.php -------------------------------------------------------------------------------- /src/Http/Route/AdminUserClientDisconnectRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/AdminUserClientDisconnectRoute.php -------------------------------------------------------------------------------- /src/Http/Route/AdminUserClientListRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/AdminUserClientListRoute.php -------------------------------------------------------------------------------- /src/Http/Route/AdminUserClientMetadataUrlRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/AdminUserClientMetadataUrlRoute.php -------------------------------------------------------------------------------- /src/Http/Route/AdminUserClientRedirectUrlRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/AdminUserClientRedirectUrlRoute.php -------------------------------------------------------------------------------- /src/Http/Route/AdminUserClientRemoteConnectRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/AdminUserClientRemoteConnectRoute.php -------------------------------------------------------------------------------- /src/Http/Route/AdminUserProviderListRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/AdminUserProviderListRoute.php -------------------------------------------------------------------------------- /src/Http/Route/ClientLoginRoutesRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/ClientLoginRoutesRoute.php -------------------------------------------------------------------------------- /src/Http/Route/ClientMetadataRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/ClientMetadataRoute.php -------------------------------------------------------------------------------- /src/Http/Route/ClientRedirectRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/ClientRedirectRoute.php -------------------------------------------------------------------------------- /src/Http/Route/ClientRemoteLoginRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/ClientRemoteLoginRoute.php -------------------------------------------------------------------------------- /src/Http/Route/ConfirmationMessageRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/ConfirmationMessageRoute.php -------------------------------------------------------------------------------- /src/Http/Route/Support/RedirectReceiveRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/Support/RedirectReceiveRoute.php -------------------------------------------------------------------------------- /src/Http/Route/Support/UserRedirectAuthenticationEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/Support/UserRedirectAuthenticationEvent.php -------------------------------------------------------------------------------- /src/Http/Route/Support/UserRedirectReceivedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Http/Route/Support/UserRedirectReceivedEvent.php -------------------------------------------------------------------------------- /src/KskHeptacomAdminOpenAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/KskHeptacomAdminOpenAuth.php -------------------------------------------------------------------------------- /src/Migration/Migration1582483949.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1582483949.php -------------------------------------------------------------------------------- /src/Migration/Migration1582483950.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1582483950.php -------------------------------------------------------------------------------- /src/Migration/Migration1582483951.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1582483951.php -------------------------------------------------------------------------------- /src/Migration/Migration1582483952.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1582483952.php -------------------------------------------------------------------------------- /src/Migration/Migration1582547243.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1582547243.php -------------------------------------------------------------------------------- /src/Migration/Migration1582942221.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1582942221.php -------------------------------------------------------------------------------- /src/Migration/Migration1583086914.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1583086914.php -------------------------------------------------------------------------------- /src/Migration/Migration1583709658.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1583709658.php -------------------------------------------------------------------------------- /src/Migration/Migration1583709659.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1583709659.php -------------------------------------------------------------------------------- /src/Migration/Migration1583709660.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1583709660.php -------------------------------------------------------------------------------- /src/Migration/Migration1583709661.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1583709661.php -------------------------------------------------------------------------------- /src/Migration/Migration1583709700.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1583709700.php -------------------------------------------------------------------------------- /src/Migration/Migration1583709701.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1583709701.php -------------------------------------------------------------------------------- /src/Migration/Migration1583709702.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1583709702.php -------------------------------------------------------------------------------- /src/Migration/Migration1583709900.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1583709900.php -------------------------------------------------------------------------------- /src/Migration/Migration1583830534.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1583830534.php -------------------------------------------------------------------------------- /src/Migration/Migration1659509400FlagUserBecomeAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1659509400FlagUserBecomeAdmin.php -------------------------------------------------------------------------------- /src/Migration/Migration1661525744ForeignKeyCascade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1661525744ForeignKeyCascade.php -------------------------------------------------------------------------------- /src/Migration/Migration1661561042AddLoginPayload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1661561042AddLoginPayload.php -------------------------------------------------------------------------------- /src/Migration/Migration1661850983AddDefaultRoles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1661850983AddDefaultRoles.php -------------------------------------------------------------------------------- /src/Migration/Migration1661868779FlagKeepUserUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1661868779FlagKeepUserUpdated.php -------------------------------------------------------------------------------- /src/Migration/Migration1666400732AddConfigurationProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1666400732AddConfigurationProperty.php -------------------------------------------------------------------------------- /src/Migration/Migration1685517454AddLoginRestrictions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1685517454AddLoginRestrictions.php -------------------------------------------------------------------------------- /src/Migration/Migration1685517455SetExpiredAndTypeToRequiredFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1685517455SetExpiredAndTypeToRequiredFields.php -------------------------------------------------------------------------------- /src/Migration/Migration1693915434MigrateSamlConfigRequestedAuthnContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1693915434MigrateSamlConfigRequestedAuthnContext.php -------------------------------------------------------------------------------- /src/Migration/Migration1702116999AddRuleTables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1702116999AddRuleTables.php -------------------------------------------------------------------------------- /src/Migration/Migration1702377314MigrateRoleAssignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1702377314MigrateRoleAssignment.php -------------------------------------------------------------------------------- /src/Migration/Migration1702401151RemoveUnusedConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1702401151RemoveUnusedConfiguration.php -------------------------------------------------------------------------------- /src/Migration/Migration1702921670AddStopOnMatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1702921670AddStopOnMatch.php -------------------------------------------------------------------------------- /src/Migration/Migration1720193260MigrateToRuleActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1720193260MigrateToRuleActions.php -------------------------------------------------------------------------------- /src/Migration/Migration1747401001RenameAzureToEntra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1747401001RenameAzureToEntra.php -------------------------------------------------------------------------------- /src/Migration/Migration1747405651ReaddKeepUserUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Migration/Migration1747405651ReaddKeepUserUpdated.php -------------------------------------------------------------------------------- /src/OpenAuth/OneTimeTokenScopeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/OpenAuth/OneTimeTokenScopeRepository.php -------------------------------------------------------------------------------- /src/Resources/app/administration/src/app/components/heptacom-admin-open-auth-url-field/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/app/components/heptacom-admin-open-auth-url-field/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/app/components/heptacom-admin-open-auth-user-confirm-login/heptacom-admin-open-auth-user-confirm-login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/app/components/heptacom-admin-open-auth-user-confirm-login/heptacom-admin-open-auth-user-confirm-login.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/app/components/heptacom-admin-open-auth-user-confirm-login/heptacom-admin-open-auth-user-confirm-login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/app/components/heptacom-admin-open-auth-user-confirm-login/heptacom-admin-open-auth-user-confirm-login.scss -------------------------------------------------------------------------------- /src/Resources/app/administration/src/app/components/heptacom-admin-open-auth-user-confirm-login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/app/components/heptacom-admin-open-auth-user-confirm-login/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/app/components/heptacom-admin-open-auth-user-confirm-login/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/app/components/heptacom-admin-open-auth-user-confirm-login/snippet/de-DE.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/app/components/heptacom-admin-open-auth-user-confirm-login/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/app/components/heptacom-admin-open-auth-user-confirm-login/snippet/en-GB.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/app/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/extension/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/extension/snippet/de-DE.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/extension/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/extension/snippet/en-GB.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/extension/sw-profile-index-general/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/extension/sw-profile-index-general/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/extension/sw-profile-index-general/sw-profile-index-general.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/extension/sw-profile-index-general/sw-profile-index-general.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/extension/sw-verify-user-modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/extension/sw-verify-user-modal/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/extension/sw-verify-user-modal/sw-verify-user-modal.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/extension/sw-verify-user-modal/sw-verify-user-modal.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/init/services.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/init/services.init.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/main.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/acl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/acl/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/component/role-assignment-action-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/component/role-assignment-action-config/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/component/role-assignment-action-config/role-assignment-action-config.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/component/role-assignment-action-config/role-assignment-action-config.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/component/rule-container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/component/rule-container/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/component/rule-container/rule-container.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/component/rule-container/rule-container.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/component/rule-item/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/component/rule-item/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/component/rule-item/rule-item.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/component/rule-item/rule-item.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/component/rule-item/rule-item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/component/rule-item/rule-item.scss -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/create/heptacom-admin-open-auth-client-create-page.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/create/heptacom-admin-open-auth-client-create-page.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/create/heptacom-admin-open-auth-client-create-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/create/heptacom-admin-open-auth-client-create-page.scss -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/create/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/create/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/edit/heptacom-admin-open-auth-client-edit-page.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/edit/heptacom-admin-open-auth-client-edit-page.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/edit/heptacom-admin-open-auth-client-edit-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/edit/heptacom-admin-open-auth-client-edit-page.scss -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/edit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/edit/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/listing/heptacom-admin-open-auth-client-listing-page.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/listing/heptacom-admin-open-auth-client-listing-page.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/listing/heptacom-admin-open-auth-client-listing-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/listing/heptacom-admin-open-auth-client-listing-page.scss -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/listing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/page/listing/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/snippet/de-DE.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/module/heptacom-admin-open-auth-client/snippet/en-GB.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/cidaas/components/provider-settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/cidaas/components/provider-settings/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/cidaas/components/provider-settings/provider-settings.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/cidaas/components/provider-settings/provider-settings.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/cidaas/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/cidaas/snippet/de-DE.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/cidaas/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/cidaas/snippet/en-GB.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/google_cloud/components/provider-settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/google_cloud/components/provider-settings/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/google_cloud/components/provider-settings/provider-settings.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/google_cloud/components/provider-settings/provider-settings.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/google_cloud/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/google_cloud/snippet/de-DE.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/google_cloud/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/google_cloud/snippet/en-GB.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/jira/components/provider-settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/jira/components/provider-settings/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/jira/components/provider-settings/provider-settings.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/jira/components/provider-settings/provider-settings.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/jira/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/jira/snippet/de-DE.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/jira/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/jira/snippet/en-GB.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/jumpcloud/components/provider-settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/jumpcloud/components/provider-settings/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/jumpcloud/components/provider-settings/provider-settings.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/jumpcloud/components/provider-settings/provider-settings.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/jumpcloud/overrides/heptacom-admin-open-auth-client-edit-page/heptacom-admin-open-auth-client-edit-page.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/jumpcloud/overrides/heptacom-admin-open-auth-client-edit-page/heptacom-admin-open-auth-client-edit-page.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/jumpcloud/overrides/heptacom-admin-open-auth-client-edit-page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/jumpcloud/overrides/heptacom-admin-open-auth-client-edit-page/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/jumpcloud/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/jumpcloud/snippet/de-DE.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/jumpcloud/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/jumpcloud/snippet/en-GB.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/keycloak/components/provider-settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/keycloak/components/provider-settings/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/keycloak/components/provider-settings/provider-settings.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/keycloak/components/provider-settings/provider-settings.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/keycloak/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/keycloak/snippet/de-DE.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/keycloak/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/keycloak/snippet/en-GB.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/microsoft_entra_id_oidc/components/provider-settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/microsoft_entra_id_oidc/components/provider-settings/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/microsoft_entra_id_oidc/components/provider-settings/provider-settings.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/microsoft_entra_id_oidc/components/provider-settings/provider-settings.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/microsoft_entra_id_oidc/decorator/condition-type-data-provider.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/microsoft_entra_id_oidc/decorator/condition-type-data-provider.decorator.ts -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/microsoft_entra_id_oidc/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/microsoft_entra_id_oidc/snippet/de-DE.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/microsoft_entra_id_oidc/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/microsoft_entra_id_oidc/snippet/en-GB.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/okta/components/provider-settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/okta/components/provider-settings/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/okta/components/provider-settings/provider-settings.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/okta/components/provider-settings/provider-settings.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/okta/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/okta/snippet/de-DE.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/okta/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/okta/snippet/en-GB.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/onelogin/components/provider-settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/onelogin/components/provider-settings/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/onelogin/components/provider-settings/provider-settings.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/onelogin/components/provider-settings/provider-settings.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/onelogin/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/onelogin/snippet/de-DE.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/onelogin/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/onelogin/snippet/en-GB.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/open_id_connect/components/condition-authenticated-request/condition-authenticated-request.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/open_id_connect/components/condition-authenticated-request/condition-authenticated-request.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/open_id_connect/components/condition-authenticated-request/condition-authenticated-request.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/open_id_connect/components/condition-authenticated-request/condition-authenticated-request.scss -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/open_id_connect/components/condition-authenticated-request/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/open_id_connect/components/condition-authenticated-request/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/open_id_connect/components/condition-jmes-path/condition-jmes-path.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/open_id_connect/components/condition-jmes-path/condition-jmes-path.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/open_id_connect/components/condition-jmes-path/condition-jmes-path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/open_id_connect/components/condition-jmes-path/condition-jmes-path.scss -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/open_id_connect/components/condition-jmes-path/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/open_id_connect/components/condition-jmes-path/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/open_id_connect/components/provider-settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/open_id_connect/components/provider-settings/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/open_id_connect/components/provider-settings/provider-settings.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/open_id_connect/components/provider-settings/provider-settings.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/open_id_connect/decorator/condition-type-data-provider.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/open_id_connect/decorator/condition-type-data-provider.decorator.ts -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/open_id_connect/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/open_id_connect/snippet/de-DE.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/open_id_connect/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/open_id_connect/snippet/en-GB.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/saml2/components/provider-settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/saml2/components/provider-settings/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/saml2/components/provider-settings/provider-settings.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/saml2/components/provider-settings/provider-settings.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/saml2/decorator/condition-type-data-provider.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/saml2/decorator/condition-type-data-provider.decorator.ts -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/saml2/overrides/heptacom-admin-open-auth-client-edit-page/heptacom-admin-open-auth-client-edit-page.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/saml2/overrides/heptacom-admin-open-auth-client-edit-page/heptacom-admin-open-auth-client-edit-page.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/saml2/overrides/heptacom-admin-open-auth-client-edit-page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/saml2/overrides/heptacom-admin-open-auth-client-edit-page/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/saml2/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/saml2/snippet/de-DE.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/provider/saml2/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/provider/saml2/snippet/en-GB.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/service/api/heptacom-admin-open-auth-provider.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/service/api/heptacom-admin-open-auth-provider.service.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/service/api/heptacom-admin-open-auth-rule-actions.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/service/api/heptacom-admin-open-auth-rule-actions.service.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/service/condition-type-data-provider.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/service/condition-type-data-provider.decorator.ts -------------------------------------------------------------------------------- /src/Resources/app/administration/src/service/heptacom-oauth-rule-data-provider.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/service/heptacom-oauth-rule-data-provider.service.ts -------------------------------------------------------------------------------- /src/Resources/app/administration/src/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/snippet/de-DE.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/src/snippet/en-GB.json -------------------------------------------------------------------------------- /src/Resources/app/administration/static/logo/cidaas_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/static/logo/cidaas_logo.svg -------------------------------------------------------------------------------- /src/Resources/app/administration/static/logo/google_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/static/logo/google_logo.svg -------------------------------------------------------------------------------- /src/Resources/app/administration/static/logo/jira_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/static/logo/jira_logo.svg -------------------------------------------------------------------------------- /src/Resources/app/administration/static/logo/keycloak_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/static/logo/keycloak_logo.svg -------------------------------------------------------------------------------- /src/Resources/app/administration/static/logo/microsoft_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/static/logo/microsoft_logo.svg -------------------------------------------------------------------------------- /src/Resources/app/administration/static/logo/okta_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/static/logo/okta_logo.png -------------------------------------------------------------------------------- /src/Resources/app/administration/static/logo/onelogin_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/static/logo/onelogin_logo.svg -------------------------------------------------------------------------------- /src/Resources/app/administration/static/logo/openid_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/static/logo/openid_logo.svg -------------------------------------------------------------------------------- /src/Resources/app/administration/static/logo/saml2_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/app/administration/static/logo/saml2_logo.svg -------------------------------------------------------------------------------- /src/Resources/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/config/config.xml -------------------------------------------------------------------------------- /src/Resources/config/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/config/plugin.png -------------------------------------------------------------------------------- /src/Resources/config/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/config/routes.xml -------------------------------------------------------------------------------- /src/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Resources/public/administration/css/ksk-heptacom-admin-open-auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/administration/css/ksk-heptacom-admin-open-auth.css -------------------------------------------------------------------------------- /src/Resources/public/administration/js/ksk-heptacom-admin-open-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/administration/js/ksk-heptacom-admin-open-auth.js -------------------------------------------------------------------------------- /src/Resources/public/static/css/121.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/css/121.css.map -------------------------------------------------------------------------------- /src/Resources/public/static/css/144.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/css/144.css.map -------------------------------------------------------------------------------- /src/Resources/public/static/css/352.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/css/352.css.map -------------------------------------------------------------------------------- /src/Resources/public/static/css/405.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/css/405.css.map -------------------------------------------------------------------------------- /src/Resources/public/static/css/619.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/css/619.css.map -------------------------------------------------------------------------------- /src/Resources/public/static/css/638.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/css/638.css -------------------------------------------------------------------------------- /src/Resources/public/static/css/638.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/css/638.css.map -------------------------------------------------------------------------------- /src/Resources/public/static/css/641.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/css/641.css.map -------------------------------------------------------------------------------- /src/Resources/public/static/js/016a187f0894656b2fcf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/016a187f0894656b2fcf.js -------------------------------------------------------------------------------- /src/Resources/public/static/js/097e9df332c39d40568f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/097e9df332c39d40568f.js -------------------------------------------------------------------------------- /src/Resources/public/static/js/1b676c106f23034fa9eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/1b676c106f23034fa9eb.js -------------------------------------------------------------------------------- /src/Resources/public/static/js/244fabffc05a1ba7f9ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/244fabffc05a1ba7f9ba.js -------------------------------------------------------------------------------- /src/Resources/public/static/js/3ba168c0e9b1a5f61fd7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/3ba168c0e9b1a5f61fd7.js -------------------------------------------------------------------------------- /src/Resources/public/static/js/45cefbf61fee7824b91d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/45cefbf61fee7824b91d.js -------------------------------------------------------------------------------- /src/Resources/public/static/js/4b17157d0bd117531ffb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/4b17157d0bd117531ffb.js -------------------------------------------------------------------------------- /src/Resources/public/static/js/6f41ea409277f977d4d7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/6f41ea409277f977d4d7.js -------------------------------------------------------------------------------- /src/Resources/public/static/js/6fef1f3746e86bcd411d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/6fef1f3746e86bcd411d.js -------------------------------------------------------------------------------- /src/Resources/public/static/js/8809e559cc7ccbee64f2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/8809e559cc7ccbee64f2.js -------------------------------------------------------------------------------- /src/Resources/public/static/js/adbf53ce658353c23309.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/adbf53ce658353c23309.js -------------------------------------------------------------------------------- /src/Resources/public/static/js/b4604a3667e12d1b9484.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/b4604a3667e12d1b9484.js -------------------------------------------------------------------------------- /src/Resources/public/static/js/cbc2f1d9bca2eaf82fe7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/cbc2f1d9bca2eaf82fe7.js -------------------------------------------------------------------------------- /src/Resources/public/static/js/d15644fd2facb14e21d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/d15644fd2facb14e21d3.js -------------------------------------------------------------------------------- /src/Resources/public/static/js/e1182a3fcf570dfc9394.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/e1182a3fcf570dfc9394.js -------------------------------------------------------------------------------- /src/Resources/public/static/js/f23129eaf16ccff809d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/js/f23129eaf16ccff809d2.js -------------------------------------------------------------------------------- /src/Resources/public/static/logo/cidaas_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/logo/cidaas_logo.svg -------------------------------------------------------------------------------- /src/Resources/public/static/logo/google_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/logo/google_logo.svg -------------------------------------------------------------------------------- /src/Resources/public/static/logo/jira_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/logo/jira_logo.svg -------------------------------------------------------------------------------- /src/Resources/public/static/logo/keycloak_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/logo/keycloak_logo.svg -------------------------------------------------------------------------------- /src/Resources/public/static/logo/microsoft_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/logo/microsoft_logo.svg -------------------------------------------------------------------------------- /src/Resources/public/static/logo/okta_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/logo/okta_logo.png -------------------------------------------------------------------------------- /src/Resources/public/static/logo/onelogin_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/logo/onelogin_logo.svg -------------------------------------------------------------------------------- /src/Resources/public/static/logo/openid_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/logo/openid_logo.svg -------------------------------------------------------------------------------- /src/Resources/public/static/logo/saml2_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/public/static/logo/saml2_logo.svg -------------------------------------------------------------------------------- /src/Resources/views/administration/heptacom-admin-open-auth/page/confirm.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/views/administration/heptacom-admin-open-auth/page/confirm.html.twig -------------------------------------------------------------------------------- /src/Resources/views/administration/index-js.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/views/administration/index-js.html.twig -------------------------------------------------------------------------------- /src/Resources/views/administration/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Resources/views/administration/index.html.twig -------------------------------------------------------------------------------- /src/Service/ClientFeatureChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/ClientFeatureChecker.php -------------------------------------------------------------------------------- /src/Service/ClientLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/ClientLoader.php -------------------------------------------------------------------------------- /src/Service/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Login.php -------------------------------------------------------------------------------- /src/Service/OpenAuth/OneTimeTokenClientRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/OpenAuth/OneTimeTokenClientRepository.php -------------------------------------------------------------------------------- /src/Service/OpenAuthenticationFlow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/OpenAuthenticationFlow.php -------------------------------------------------------------------------------- /src/Service/Provider/CidaasClientEntityWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/CidaasClientEntityWriter.php -------------------------------------------------------------------------------- /src/Service/Provider/CidaasProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/CidaasProvider.php -------------------------------------------------------------------------------- /src/Service/Provider/GoogleCloudClientEntityWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/GoogleCloudClientEntityWriter.php -------------------------------------------------------------------------------- /src/Service/Provider/GoogleCloudProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/GoogleCloudProvider.php -------------------------------------------------------------------------------- /src/Service/Provider/JiraClientEntityWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/JiraClientEntityWriter.php -------------------------------------------------------------------------------- /src/Service/Provider/JiraProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/JiraProvider.php -------------------------------------------------------------------------------- /src/Service/Provider/JumpCloudClientEntityWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/JumpCloudClientEntityWriter.php -------------------------------------------------------------------------------- /src/Service/Provider/JumpCloudServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/JumpCloudServiceProvider.php -------------------------------------------------------------------------------- /src/Service/Provider/KeycloakClientEntityWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/KeycloakClientEntityWriter.php -------------------------------------------------------------------------------- /src/Service/Provider/KeycloakProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/KeycloakProvider.php -------------------------------------------------------------------------------- /src/Service/Provider/MicrosoftEntraIdOidcClientEntityWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/MicrosoftEntraIdOidcClientEntityWriter.php -------------------------------------------------------------------------------- /src/Service/Provider/MicrosoftEntraIdOidcProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/MicrosoftEntraIdOidcProvider.php -------------------------------------------------------------------------------- /src/Service/Provider/OktaClientEntityWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/OktaClientEntityWriter.php -------------------------------------------------------------------------------- /src/Service/Provider/OktaProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/OktaProvider.php -------------------------------------------------------------------------------- /src/Service/Provider/OneLoginClientEntityWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/OneLoginClientEntityWriter.php -------------------------------------------------------------------------------- /src/Service/Provider/OneLoginProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/OneLoginProvider.php -------------------------------------------------------------------------------- /src/Service/Provider/OpenIdConnectClientEntityWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/OpenIdConnectClientEntityWriter.php -------------------------------------------------------------------------------- /src/Service/Provider/OpenIdConnectProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/OpenIdConnectProvider.php -------------------------------------------------------------------------------- /src/Service/Provider/Saml2ClientEntityWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/Saml2ClientEntityWriter.php -------------------------------------------------------------------------------- /src/Service/Provider/Saml2ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Provider/Saml2ServiceProvider.php -------------------------------------------------------------------------------- /src/Service/RedirectBehaviourFactoryService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/RedirectBehaviourFactoryService.php -------------------------------------------------------------------------------- /src/Service/Rule/Action/RoleAssignment/RoleAssignmentAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Rule/Action/RoleAssignment/RoleAssignmentAction.php -------------------------------------------------------------------------------- /src/Service/Rule/Action/RoleAssignment/RoleAssignmentMissingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Rule/Action/RoleAssignment/RoleAssignmentMissingException.php -------------------------------------------------------------------------------- /src/Service/Rule/ClientRuleExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Rule/ClientRuleExecutor.php -------------------------------------------------------------------------------- /src/Service/Rule/ClientRuleValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/Rule/ClientRuleValidator.php -------------------------------------------------------------------------------- /src/Service/StateFactory/ConfirmStateFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/StateFactory/ConfirmStateFactory.php -------------------------------------------------------------------------------- /src/Service/StateFactory/ConnectStateFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/StateFactory/ConnectStateFactory.php -------------------------------------------------------------------------------- /src/Service/StateFactory/LoginStateFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/StateFactory/LoginStateFactory.php -------------------------------------------------------------------------------- /src/Service/StateResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/StateResolver.php -------------------------------------------------------------------------------- /src/Service/TokenPairFactoryContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/TokenPairFactoryContract.php -------------------------------------------------------------------------------- /src/Service/UserEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/UserEmail.php -------------------------------------------------------------------------------- /src/Service/UserKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/UserKey.php -------------------------------------------------------------------------------- /src/Service/UserResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/UserResolver.php -------------------------------------------------------------------------------- /src/Service/UserToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Service/UserToken.php -------------------------------------------------------------------------------- /src/Subscriber/ApiAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Subscriber/ApiAuthentication.php -------------------------------------------------------------------------------- /src/Subscriber/AuthenticationFlowActionExecution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Subscriber/AuthenticationFlowActionExecution.php -------------------------------------------------------------------------------- /src/Task/LoginsCleanupTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Task/LoginsCleanupTask.php -------------------------------------------------------------------------------- /src/Task/LoginsCleanupTaskHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Task/LoginsCleanupTaskHandler.php -------------------------------------------------------------------------------- /src/Twig/ConfigExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/HeptacomShopwarePlatformAdminOpenAuth/HEAD/src/Twig/ConfigExtension.php --------------------------------------------------------------------------------