├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc.cjs ├── .mvn ├── jvm.config └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .prettierignore ├── .prettierrc ├── .yo-rc.json ├── LICENSE.txt ├── README.md ├── angular.json ├── checkstyle.xml ├── cypress-audits.config.ts ├── cypress.config.ts ├── eslint.config.mjs ├── jest.conf.js ├── mvnw ├── mvnw.cmd ├── ngsw-config.json ├── npmw ├── npmw.cmd ├── package.json ├── pom.xml ├── sonar-project.properties ├── src ├── main │ ├── docker │ │ ├── app.yml │ │ ├── config │ │ │ └── mysql │ │ │ │ └── my.cnf │ │ ├── grafana │ │ │ └── provisioning │ │ │ │ ├── dashboards │ │ │ │ ├── JVM.json │ │ │ │ └── dashboard.yml │ │ │ │ └── datasources │ │ │ │ └── datasource.yml │ │ ├── jhipster-control-center.yml │ │ ├── jib │ │ │ └── entrypoint.sh │ │ ├── keycloak.yml │ │ ├── monitoring.yml │ │ ├── mysql.yml │ │ ├── prometheus │ │ │ └── prometheus.yml │ │ ├── realm-config │ │ │ ├── jhipster-realm.json │ │ │ └── keycloak-health-check.sh │ │ ├── services.yml │ │ └── sonar.yml │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── jhipster │ │ │ └── sample │ │ │ ├── ApplicationWebXml.java │ │ │ ├── GeneratedByJHipster.java │ │ │ ├── JhipsterOauth2SampleApplicationApp.java │ │ │ ├── aop │ │ │ └── logging │ │ │ │ ├── LoggingAspect.java │ │ │ │ └── package-info.java │ │ │ ├── config │ │ │ ├── ApplicationProperties.java │ │ │ ├── AsyncConfiguration.java │ │ │ ├── CRLFLogConverter.java │ │ │ ├── CacheConfiguration.java │ │ │ ├── Constants.java │ │ │ ├── DatabaseConfiguration.java │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ ├── JacksonConfiguration.java │ │ │ ├── LiquibaseConfiguration.java │ │ │ ├── LoggingAspectConfiguration.java │ │ │ ├── LoggingConfiguration.java │ │ │ ├── OAuth2Configuration.java │ │ │ ├── SecurityConfiguration.java │ │ │ ├── StaticResourcesWebConfiguration.java │ │ │ ├── WebConfigurer.java │ │ │ └── package-info.java │ │ │ ├── domain │ │ │ ├── AbstractAuditingEntity.java │ │ │ ├── Authority.java │ │ │ ├── User.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── repository │ │ │ ├── AuthorityRepository.java │ │ │ ├── UserRepository.java │ │ │ └── package-info.java │ │ │ ├── security │ │ │ ├── AuthoritiesConstants.java │ │ │ ├── SecurityUtils.java │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ ├── oauth2 │ │ │ │ ├── AudienceValidator.java │ │ │ │ ├── CustomClaimConverter.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── service │ │ │ ├── UserService.java │ │ │ ├── dto │ │ │ │ ├── AdminUserDTO.java │ │ │ │ ├── UserDTO.java │ │ │ │ └── package-info.java │ │ │ ├── mapper │ │ │ │ ├── UserMapper.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ └── web │ │ │ ├── filter │ │ │ ├── OAuth2RefreshTokensWebFilter.java │ │ │ ├── SpaWebFilter.java │ │ │ └── package-info.java │ │ │ └── rest │ │ │ ├── AccountResource.java │ │ │ ├── AuthInfoResource.java │ │ │ ├── AuthorityResource.java │ │ │ ├── LogoutResource.java │ │ │ ├── PublicUserResource.java │ │ │ ├── errors │ │ │ ├── BadRequestAlertException.java │ │ │ ├── ErrorConstants.java │ │ │ ├── ExceptionTranslator.java │ │ │ ├── FieldErrorVM.java │ │ │ └── package-info.java │ │ │ └── package-info.java │ ├── resources │ │ ├── .h2.server.properties │ │ ├── banner.txt │ │ ├── config │ │ │ ├── application-dev.yml │ │ │ ├── application-prod.yml │ │ │ ├── application-tls.yml │ │ │ ├── application.yml │ │ │ ├── liquibase │ │ │ │ ├── changelog │ │ │ │ │ └── 00000000000000_initial_schema.xml │ │ │ │ ├── data │ │ │ │ │ └── authority.csv │ │ │ │ └── master.xml │ │ │ └── tls │ │ │ │ └── keystore.p12 │ │ ├── i18n │ │ │ ├── messages.properties │ │ │ └── messages_en.properties │ │ ├── logback-spring.xml │ │ └── templates │ │ │ └── error.html │ └── webapp │ │ ├── 404.html │ │ ├── WEB-INF │ │ └── web.xml │ │ ├── app │ │ ├── admin │ │ │ ├── admin.routes.ts │ │ │ ├── configuration │ │ │ │ ├── configuration.component.html │ │ │ │ ├── configuration.component.spec.ts │ │ │ │ ├── configuration.component.ts │ │ │ │ ├── configuration.model.ts │ │ │ │ ├── configuration.service.spec.ts │ │ │ │ └── configuration.service.ts │ │ │ ├── docs │ │ │ │ ├── docs.component.html │ │ │ │ ├── docs.component.scss │ │ │ │ └── docs.component.ts │ │ │ ├── health │ │ │ │ ├── health.component.html │ │ │ │ ├── health.component.spec.ts │ │ │ │ ├── health.component.ts │ │ │ │ ├── health.model.ts │ │ │ │ ├── health.service.spec.ts │ │ │ │ ├── health.service.ts │ │ │ │ └── modal │ │ │ │ │ ├── health-modal.component.html │ │ │ │ │ ├── health-modal.component.spec.ts │ │ │ │ │ └── health-modal.component.ts │ │ │ ├── logs │ │ │ │ ├── log.model.ts │ │ │ │ ├── logs.component.html │ │ │ │ ├── logs.component.spec.ts │ │ │ │ ├── logs.component.ts │ │ │ │ ├── logs.service.spec.ts │ │ │ │ └── logs.service.ts │ │ │ └── metrics │ │ │ │ ├── blocks │ │ │ │ ├── jvm-memory │ │ │ │ │ ├── jvm-memory.component.html │ │ │ │ │ └── jvm-memory.component.ts │ │ │ │ ├── jvm-threads │ │ │ │ │ ├── jvm-threads.component.html │ │ │ │ │ └── jvm-threads.component.ts │ │ │ │ ├── metrics-cache │ │ │ │ │ ├── metrics-cache.component.html │ │ │ │ │ └── metrics-cache.component.ts │ │ │ │ ├── metrics-datasource │ │ │ │ │ ├── metrics-datasource.component.html │ │ │ │ │ └── metrics-datasource.component.ts │ │ │ │ ├── metrics-endpoints-requests │ │ │ │ │ ├── metrics-endpoints-requests.component.html │ │ │ │ │ └── metrics-endpoints-requests.component.ts │ │ │ │ ├── metrics-garbagecollector │ │ │ │ │ ├── metrics-garbagecollector.component.html │ │ │ │ │ └── metrics-garbagecollector.component.ts │ │ │ │ ├── metrics-modal-threads │ │ │ │ │ ├── metrics-modal-threads.component.html │ │ │ │ │ ├── metrics-modal-threads.component.spec.ts │ │ │ │ │ └── metrics-modal-threads.component.ts │ │ │ │ ├── metrics-request │ │ │ │ │ ├── metrics-request.component.html │ │ │ │ │ └── metrics-request.component.ts │ │ │ │ └── metrics-system │ │ │ │ │ ├── metrics-system.component.html │ │ │ │ │ └── metrics-system.component.ts │ │ │ │ ├── metrics.component.html │ │ │ │ ├── metrics.component.spec.ts │ │ │ │ ├── metrics.component.ts │ │ │ │ ├── metrics.model.ts │ │ │ │ ├── metrics.service.spec.ts │ │ │ │ └── metrics.service.ts │ │ ├── app-page-title-strategy.ts │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ ├── app.routes.ts │ │ ├── config │ │ │ ├── authority.constants.ts │ │ │ ├── datepicker-adapter.ts │ │ │ ├── dayjs.ts │ │ │ ├── error.constants.ts │ │ │ ├── font-awesome-icons.ts │ │ │ ├── input.constants.ts │ │ │ ├── language.constants.ts │ │ │ ├── navigation.constants.ts │ │ │ ├── pagination.constants.ts │ │ │ ├── translation.config.ts │ │ │ └── uib-pagination.config.ts │ │ ├── core │ │ │ ├── auth │ │ │ │ ├── account.model.ts │ │ │ │ ├── account.service.spec.ts │ │ │ │ ├── account.service.ts │ │ │ │ ├── auth-session.service.ts │ │ │ │ ├── state-storage.service.ts │ │ │ │ └── user-route-access.service.ts │ │ │ ├── config │ │ │ │ ├── application-config.service.spec.ts │ │ │ │ └── application-config.service.ts │ │ │ ├── interceptor │ │ │ │ ├── auth-expired.interceptor.ts │ │ │ │ ├── error-handler.interceptor.ts │ │ │ │ ├── index.ts │ │ │ │ └── notification.interceptor.ts │ │ │ ├── request │ │ │ │ ├── request-util.ts │ │ │ │ └── request.model.ts │ │ │ └── util │ │ │ │ ├── alert.service.spec.ts │ │ │ │ ├── alert.service.ts │ │ │ │ ├── data-util.service.spec.ts │ │ │ │ ├── data-util.service.ts │ │ │ │ ├── event-manager.service.spec.ts │ │ │ │ ├── event-manager.service.ts │ │ │ │ ├── operators.spec.ts │ │ │ │ ├── operators.ts │ │ │ │ ├── parse-links.service.spec.ts │ │ │ │ └── parse-links.service.ts │ │ ├── entities │ │ │ ├── admin │ │ │ │ └── authority │ │ │ │ │ ├── authority.model.ts │ │ │ │ │ ├── authority.routes.ts │ │ │ │ │ ├── authority.test-samples.ts │ │ │ │ │ ├── delete │ │ │ │ │ ├── authority-delete-dialog.component.html │ │ │ │ │ ├── authority-delete-dialog.component.spec.ts │ │ │ │ │ └── authority-delete-dialog.component.ts │ │ │ │ │ ├── detail │ │ │ │ │ ├── authority-detail.component.html │ │ │ │ │ ├── authority-detail.component.spec.ts │ │ │ │ │ └── authority-detail.component.ts │ │ │ │ │ ├── list │ │ │ │ │ ├── authority.component.html │ │ │ │ │ ├── authority.component.spec.ts │ │ │ │ │ └── authority.component.ts │ │ │ │ │ ├── route │ │ │ │ │ ├── authority-routing-resolve.service.spec.ts │ │ │ │ │ └── authority-routing-resolve.service.ts │ │ │ │ │ ├── service │ │ │ │ │ ├── authority.service.spec.ts │ │ │ │ │ └── authority.service.ts │ │ │ │ │ └── update │ │ │ │ │ ├── authority-form.service.spec.ts │ │ │ │ │ ├── authority-form.service.ts │ │ │ │ │ ├── authority-update.component.html │ │ │ │ │ ├── authority-update.component.spec.ts │ │ │ │ │ └── authority-update.component.ts │ │ │ ├── entity-navbar-items.ts │ │ │ ├── entity.routes.ts │ │ │ └── user │ │ │ │ ├── service │ │ │ │ ├── user.service.spec.ts │ │ │ │ └── user.service.ts │ │ │ │ ├── user.model.ts │ │ │ │ └── user.test-samples.ts │ │ ├── home │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── layouts │ │ │ ├── error │ │ │ │ ├── error.component.html │ │ │ │ ├── error.component.ts │ │ │ │ └── error.route.ts │ │ │ ├── footer │ │ │ │ ├── footer.component.html │ │ │ │ └── footer.component.ts │ │ │ ├── main │ │ │ │ ├── main.component.html │ │ │ │ ├── main.component.spec.ts │ │ │ │ └── main.component.ts │ │ │ ├── navbar │ │ │ │ ├── active-menu.directive.ts │ │ │ │ ├── navbar-item.model.d.ts │ │ │ │ ├── navbar.component.html │ │ │ │ ├── navbar.component.scss │ │ │ │ ├── navbar.component.spec.ts │ │ │ │ └── navbar.component.ts │ │ │ └── profiles │ │ │ │ ├── page-ribbon.component.scss │ │ │ │ ├── page-ribbon.component.spec.ts │ │ │ │ ├── page-ribbon.component.ts │ │ │ │ ├── profile-info.model.ts │ │ │ │ └── profile.service.ts │ │ ├── login │ │ │ ├── login.service.ts │ │ │ └── logout.model.ts │ │ └── shared │ │ │ ├── alert │ │ │ ├── alert-error.component.html │ │ │ ├── alert-error.component.spec.ts │ │ │ ├── alert-error.component.ts │ │ │ ├── alert-error.model.ts │ │ │ ├── alert.component.html │ │ │ ├── alert.component.spec.ts │ │ │ └── alert.component.ts │ │ │ ├── auth │ │ │ ├── has-any-authority.directive.spec.ts │ │ │ └── has-any-authority.directive.ts │ │ │ ├── date │ │ │ ├── duration.pipe.ts │ │ │ ├── format-medium-date.pipe.spec.ts │ │ │ ├── format-medium-date.pipe.ts │ │ │ ├── format-medium-datetime.pipe.spec.ts │ │ │ ├── format-medium-datetime.pipe.ts │ │ │ └── index.ts │ │ │ ├── filter │ │ │ ├── filter.component.html │ │ │ ├── filter.component.ts │ │ │ ├── filter.model.spec.ts │ │ │ ├── filter.model.ts │ │ │ └── index.ts │ │ │ ├── language │ │ │ ├── find-language-from-key.pipe.ts │ │ │ ├── index.ts │ │ │ ├── translate.directive.spec.ts │ │ │ ├── translate.directive.ts │ │ │ └── translation.module.ts │ │ │ ├── pagination │ │ │ ├── index.ts │ │ │ ├── item-count.component.spec.ts │ │ │ └── item-count.component.ts │ │ │ ├── shared.module.ts │ │ │ └── sort │ │ │ ├── index.ts │ │ │ ├── sort-by.directive.spec.ts │ │ │ ├── sort-by.directive.ts │ │ │ ├── sort-state.ts │ │ │ ├── sort.directive.spec.ts │ │ │ ├── sort.directive.ts │ │ │ ├── sort.service.spec.ts │ │ │ └── sort.service.ts │ │ ├── bootstrap.ts │ │ ├── content │ │ ├── css │ │ │ └── loading.css │ │ ├── images │ │ │ ├── jhipster_family_member_0.svg │ │ │ ├── jhipster_family_member_0_head-192.png │ │ │ ├── jhipster_family_member_0_head-256.png │ │ │ ├── jhipster_family_member_0_head-384.png │ │ │ ├── jhipster_family_member_0_head-512.png │ │ │ ├── jhipster_family_member_1.svg │ │ │ ├── jhipster_family_member_1_head-192.png │ │ │ ├── jhipster_family_member_1_head-256.png │ │ │ ├── jhipster_family_member_1_head-384.png │ │ │ ├── jhipster_family_member_1_head-512.png │ │ │ ├── jhipster_family_member_2.svg │ │ │ ├── jhipster_family_member_2_head-192.png │ │ │ ├── jhipster_family_member_2_head-256.png │ │ │ ├── jhipster_family_member_2_head-384.png │ │ │ ├── jhipster_family_member_2_head-512.png │ │ │ ├── jhipster_family_member_3.svg │ │ │ ├── jhipster_family_member_3_head-192.png │ │ │ ├── jhipster_family_member_3_head-256.png │ │ │ ├── jhipster_family_member_3_head-384.png │ │ │ ├── jhipster_family_member_3_head-512.png │ │ │ └── logo-jhipster.png │ │ └── scss │ │ │ ├── _bootstrap-variables.scss │ │ │ ├── global.scss │ │ │ └── vendor.scss │ │ ├── declarations.d.ts │ │ ├── environments │ │ ├── environment.development.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── i18n │ │ └── en │ │ │ ├── activate.json │ │ │ ├── adminAuthority.json │ │ │ ├── configuration.json │ │ │ ├── error.json │ │ │ ├── global.json │ │ │ ├── health.json │ │ │ ├── home.json │ │ │ ├── login.json │ │ │ ├── logs.json │ │ │ ├── metrics.json │ │ │ ├── password.json │ │ │ ├── register.json │ │ │ ├── reset.json │ │ │ ├── sessions.json │ │ │ └── settings.json │ │ ├── index.html │ │ ├── main.ts │ │ ├── manifest.webapp │ │ ├── robots.txt │ │ └── swagger-ui │ │ └── index.html └── test │ ├── gatling │ └── conf │ │ ├── gatling.conf │ │ └── logback.xml │ ├── java │ └── io │ │ └── github │ │ └── jhipster │ │ └── sample │ │ ├── IntegrationTest.java │ │ ├── TechnicalStructureTest.java │ │ ├── config │ │ ├── AsyncSyncConfiguration.java │ │ ├── CRLFLogConverterTest.java │ │ ├── EmbeddedSQL.java │ │ ├── MysqlTestContainer.java │ │ ├── SpringBootTestClassOrderer.java │ │ ├── SqlTestContainer.java │ │ ├── SqlTestContainersSpringContextCustomizerFactory.java │ │ ├── StaticResourcesWebConfigurerTest.java │ │ ├── TestSecurityConfiguration.java │ │ ├── WebConfigurerTest.java │ │ ├── WebConfigurerTestController.java │ │ └── timezone │ │ │ └── HibernateTimeZoneIT.java │ │ ├── domain │ │ ├── AssertUtils.java │ │ ├── AuthorityAsserts.java │ │ ├── AuthorityTest.java │ │ └── AuthorityTestSamples.java │ │ ├── repository │ │ └── timezone │ │ │ ├── DateTimeWrapper.java │ │ │ └── DateTimeWrapperRepository.java │ │ ├── security │ │ ├── SecurityUtilsUnitTest.java │ │ └── oauth2 │ │ │ ├── AudienceValidatorTest.java │ │ │ └── CustomClaimConverterIT.java │ │ ├── service │ │ ├── UserServiceIT.java │ │ └── mapper │ │ │ └── UserMapperTest.java │ │ ├── test │ │ └── util │ │ │ └── OAuth2TestUtil.java │ │ └── web │ │ ├── filter │ │ └── SpaWebFilterIT.java │ │ └── rest │ │ ├── AccountResourceIT.java │ │ ├── AuthorityResourceIT.java │ │ ├── LogoutResourceIT.java │ │ ├── PublicUserResourceIT.java │ │ ├── TestUtil.java │ │ ├── UserResourceIT.java │ │ ├── WithUnauthenticatedMockUser.java │ │ └── errors │ │ ├── ExceptionTranslatorIT.java │ │ └── ExceptionTranslatorTestController.java │ ├── javascript │ └── cypress │ │ ├── e2e │ │ ├── account │ │ │ └── logout.cy.ts │ │ ├── administration │ │ │ └── administration.cy.ts │ │ ├── entity │ │ │ └── authority.cy.ts │ │ └── lighthouse.audits.ts │ │ ├── fixtures │ │ └── integration-test.png │ │ ├── plugins │ │ └── index.ts │ │ ├── support │ │ ├── commands.ts │ │ ├── entity.ts │ │ ├── index.ts │ │ ├── management.ts │ │ ├── navbar.ts │ │ └── oauth2.ts │ │ └── tsconfig.json │ └── resources │ ├── META-INF │ └── spring.factories │ ├── config │ ├── application-testdev.yml │ ├── application-testprod.yml │ └── application.yml │ ├── junit-platform.properties │ └── logback.xml ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── webpack ├── environment.js ├── logo-jhipster.png ├── proxy.conf.js └── webpack.custom.js /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | lint-staged 2 | -------------------------------------------------------------------------------- /.lintstagedrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/.lintstagedrc.cjs -------------------------------------------------------------------------------- /.mvn/jvm.config: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/angular.json -------------------------------------------------------------------------------- /checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/checkstyle.xml -------------------------------------------------------------------------------- /cypress-audits.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/cypress-audits.config.ts -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/jest.conf.js -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/ngsw-config.json -------------------------------------------------------------------------------- /npmw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/npmw -------------------------------------------------------------------------------- /npmw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/npmw.cmd -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/package.json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/pom.xml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/docker/app.yml -------------------------------------------------------------------------------- /src/main/docker/config/mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/docker/config/mysql/my.cnf -------------------------------------------------------------------------------- /src/main/docker/grafana/provisioning/dashboards/JVM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/docker/grafana/provisioning/dashboards/JVM.json -------------------------------------------------------------------------------- /src/main/docker/grafana/provisioning/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/docker/grafana/provisioning/dashboards/dashboard.yml -------------------------------------------------------------------------------- /src/main/docker/grafana/provisioning/datasources/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/docker/grafana/provisioning/datasources/datasource.yml -------------------------------------------------------------------------------- /src/main/docker/jhipster-control-center.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/docker/jhipster-control-center.yml -------------------------------------------------------------------------------- /src/main/docker/jib/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/docker/jib/entrypoint.sh -------------------------------------------------------------------------------- /src/main/docker/keycloak.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/docker/keycloak.yml -------------------------------------------------------------------------------- /src/main/docker/monitoring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/docker/monitoring.yml -------------------------------------------------------------------------------- /src/main/docker/mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/docker/mysql.yml -------------------------------------------------------------------------------- /src/main/docker/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/docker/prometheus/prometheus.yml -------------------------------------------------------------------------------- /src/main/docker/realm-config/jhipster-realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/docker/realm-config/jhipster-realm.json -------------------------------------------------------------------------------- /src/main/docker/realm-config/keycloak-health-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/docker/realm-config/keycloak-health-check.sh -------------------------------------------------------------------------------- /src/main/docker/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/docker/services.yml -------------------------------------------------------------------------------- /src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/ApplicationWebXml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/ApplicationWebXml.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/GeneratedByJHipster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/GeneratedByJHipster.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/JhipsterOauth2SampleApplicationApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/JhipsterOauth2SampleApplicationApp.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/aop/logging/LoggingAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/aop/logging/LoggingAspect.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/aop/logging/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/aop/logging/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/ApplicationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/ApplicationProperties.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/AsyncConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/AsyncConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/CRLFLogConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/CRLFLogConverter.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/CacheConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/CacheConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/Constants.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/DatabaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/DatabaseConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/DateTimeFormatConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/DateTimeFormatConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/JacksonConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/JacksonConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/LiquibaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/LiquibaseConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/LoggingAspectConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/LoggingAspectConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/LoggingConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/LoggingConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/OAuth2Configuration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/OAuth2Configuration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/SecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/SecurityConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/StaticResourcesWebConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/StaticResourcesWebConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/WebConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/WebConfigurer.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/config/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/domain/AbstractAuditingEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/domain/AbstractAuditingEntity.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/domain/Authority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/domain/Authority.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/domain/User.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/domain/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/domain/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Application root. 3 | */ 4 | package io.github.jhipster.sample; 5 | -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/AuthorityRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/repository/AuthorityRepository.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/repository/UserRepository.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/repository/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/security/AuthoritiesConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/security/AuthoritiesConstants.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/security/SecurityUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/security/SecurityUtils.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/security/SpringSecurityAuditorAware.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/security/SpringSecurityAuditorAware.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/security/oauth2/AudienceValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/security/oauth2/AudienceValidator.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/security/oauth2/CustomClaimConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/security/oauth2/CustomClaimConverter.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/security/oauth2/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/security/oauth2/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/security/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/security/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/service/UserService.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/dto/AdminUserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/service/dto/AdminUserDTO.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/dto/UserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/service/dto/UserDTO.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/dto/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/service/dto/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/service/mapper/UserMapper.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/mapper/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/service/mapper/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/service/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/filter/OAuth2RefreshTokensWebFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/web/filter/OAuth2RefreshTokensWebFilter.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/filter/SpaWebFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/web/filter/SpaWebFilter.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/filter/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/web/filter/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/AccountResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/web/rest/AccountResource.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/AuthInfoResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/web/rest/AuthInfoResource.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/AuthorityResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/web/rest/AuthorityResource.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/LogoutResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/web/rest/LogoutResource.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/PublicUserResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/web/rest/PublicUserResource.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/errors/BadRequestAlertException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/web/rest/errors/BadRequestAlertException.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/errors/ErrorConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/web/rest/errors/ErrorConstants.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/errors/ExceptionTranslator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/web/rest/errors/ExceptionTranslator.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/errors/FieldErrorVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/web/rest/errors/FieldErrorVM.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/errors/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/web/rest/errors/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/java/io/github/jhipster/sample/web/rest/package-info.java -------------------------------------------------------------------------------- /src/main/resources/.h2.server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/resources/.h2.server.properties -------------------------------------------------------------------------------- /src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/resources/banner.txt -------------------------------------------------------------------------------- /src/main/resources/config/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/resources/config/application-dev.yml -------------------------------------------------------------------------------- /src/main/resources/config/application-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/resources/config/application-prod.yml -------------------------------------------------------------------------------- /src/main/resources/config/application-tls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/resources/config/application-tls.yml -------------------------------------------------------------------------------- /src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/00000000000000_initial_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/resources/config/liquibase/changelog/00000000000000_initial_schema.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/data/authority.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/resources/config/liquibase/data/authority.csv -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/master.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/resources/config/liquibase/master.xml -------------------------------------------------------------------------------- /src/main/resources/config/tls/keystore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/resources/config/tls/keystore.p12 -------------------------------------------------------------------------------- /src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/resources/i18n/messages.properties -------------------------------------------------------------------------------- /src/main/resources/i18n/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/resources/i18n/messages_en.properties -------------------------------------------------------------------------------- /src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/404.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/app/admin/admin.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/admin.routes.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/configuration/configuration.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/configuration/configuration.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/configuration/configuration.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/configuration/configuration.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/configuration/configuration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/configuration/configuration.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/configuration/configuration.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/configuration/configuration.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/configuration/configuration.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/configuration/configuration.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/configuration/configuration.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/configuration/configuration.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/docs/docs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/docs/docs.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/docs/docs.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/docs/docs.component.scss -------------------------------------------------------------------------------- /src/main/webapp/app/admin/docs/docs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/docs/docs.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/health.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/health/health.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/health.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/health/health.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/health.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/health/health.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/health.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/health/health.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/health.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/health/health.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/health.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/health/health.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/modal/health-modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/health/modal/health-modal.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/modal/health-modal.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/health/modal/health-modal.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/modal/health-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/health/modal/health-modal.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/logs/log.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/logs/log.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/logs/logs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/logs/logs.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/logs/logs.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/logs/logs.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/logs/logs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/logs/logs.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/logs/logs.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/logs/logs.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/logs/logs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/logs/logs.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/jvm-memory/jvm-memory.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/jvm-memory/jvm-memory.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/jvm-memory/jvm-memory.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/jvm-memory/jvm-memory.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/jvm-threads/jvm-threads.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/jvm-threads/jvm-threads.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/jvm-threads/jvm-threads.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/jvm-threads/jvm-threads.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-cache/metrics-cache.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-cache/metrics-cache.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-cache/metrics-cache.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-cache/metrics-cache.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-datasource/metrics-datasource.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-datasource/metrics-datasource.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-datasource/metrics-datasource.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-datasource/metrics-datasource.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-endpoints-requests/metrics-endpoints-requests.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-endpoints-requests/metrics-endpoints-requests.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-endpoints-requests/metrics-endpoints-requests.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-endpoints-requests/metrics-endpoints-requests.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-garbagecollector/metrics-garbagecollector.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-garbagecollector/metrics-garbagecollector.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-garbagecollector/metrics-garbagecollector.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-garbagecollector/metrics-garbagecollector.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-modal-threads/metrics-modal-threads.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-modal-threads/metrics-modal-threads.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-modal-threads/metrics-modal-threads.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-modal-threads/metrics-modal-threads.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-modal-threads/metrics-modal-threads.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-modal-threads/metrics-modal-threads.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-request/metrics-request.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-request/metrics-request.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-request/metrics-request.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-request/metrics-request.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-system/metrics-system.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-system/metrics-system.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-system/metrics-system.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-system/metrics-system.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/metrics.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/metrics.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/metrics.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/metrics.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/metrics.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/metrics.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/metrics.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/metrics.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/metrics.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/metrics.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/metrics.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/admin/metrics/metrics.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/app-page-title-strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/app-page-title-strategy.ts -------------------------------------------------------------------------------- /src/main/webapp/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/app.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/app.config.ts -------------------------------------------------------------------------------- /src/main/webapp/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/app.routes.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/authority.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/config/authority.constants.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/datepicker-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/config/datepicker-adapter.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/dayjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/config/dayjs.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/error.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/config/error.constants.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/font-awesome-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/config/font-awesome-icons.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/input.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/config/input.constants.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/language.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/config/language.constants.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/navigation.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/config/navigation.constants.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/pagination.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/config/pagination.constants.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/translation.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/config/translation.config.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/uib-pagination.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/config/uib-pagination.config.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/auth/account.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/auth/account.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/auth/account.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/auth/account.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/auth/account.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/auth/account.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/auth/auth-session.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/auth/auth-session.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/auth/state-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/auth/state-storage.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/auth/user-route-access.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/auth/user-route-access.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/config/application-config.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/config/application-config.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/config/application-config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/config/application-config.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/interceptor/auth-expired.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/interceptor/auth-expired.interceptor.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/interceptor/error-handler.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/interceptor/error-handler.interceptor.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/interceptor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/interceptor/index.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/interceptor/notification.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/interceptor/notification.interceptor.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/request/request-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/request/request-util.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/request/request.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/request/request.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/alert.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/util/alert.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/alert.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/util/alert.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/data-util.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/util/data-util.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/data-util.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/util/data-util.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/event-manager.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/util/event-manager.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/event-manager.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/util/event-manager.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/operators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/util/operators.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/operators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/util/operators.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/parse-links.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/util/parse-links.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/parse-links.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/core/util/parse-links.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/authority.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/authority.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/authority.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/authority.routes.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/authority.test-samples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/authority.test-samples.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/delete/authority-delete-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/delete/authority-delete-dialog.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/delete/authority-delete-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/delete/authority-delete-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/delete/authority-delete-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/delete/authority-delete-dialog.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/detail/authority-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/detail/authority-detail.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/detail/authority-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/detail/authority-detail.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/detail/authority-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/detail/authority-detail.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/list/authority.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/list/authority.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/list/authority.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/list/authority.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/list/authority.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/list/authority.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/route/authority-routing-resolve.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/route/authority-routing-resolve.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/route/authority-routing-resolve.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/route/authority-routing-resolve.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/service/authority.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/service/authority.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/service/authority.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/service/authority.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/update/authority-form.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/update/authority-form.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/update/authority-form.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/update/authority-form.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/update/authority-update.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/update/authority-update.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/update/authority-update.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/update/authority-update.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/update/authority-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/admin/authority/update/authority-update.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/entity-navbar-items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/entity-navbar-items.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/entity.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/entity.routes.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/user/service/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/user/service/user.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/user/service/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/user/service/user.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/user/user.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/user/user.test-samples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/entities/user/user.test-samples.ts -------------------------------------------------------------------------------- /src/main/webapp/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/home/home.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/home/home.component.scss -------------------------------------------------------------------------------- /src/main/webapp/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/home/home.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/error/error.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/error/error.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/error/error.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/error/error.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/error/error.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/error/error.route.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/footer/footer.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/footer/footer.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/main/main.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/main/main.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/main/main.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/main/main.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/main/main.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/main/main.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/navbar/active-menu.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/navbar/active-menu.directive.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/navbar/navbar-item.model.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/navbar/navbar-item.model.d.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/navbar/navbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/navbar/navbar.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/navbar/navbar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/navbar/navbar.component.scss -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/navbar/navbar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/navbar/navbar.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/navbar/navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/navbar/navbar.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/profiles/page-ribbon.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/profiles/page-ribbon.component.scss -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/profiles/page-ribbon.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/profiles/page-ribbon.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/profiles/page-ribbon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/profiles/page-ribbon.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/profiles/profile-info.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/profiles/profile-info.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/profiles/profile.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/layouts/profiles/profile.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/login/login.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/login/login.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/login/logout.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/login/logout.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/alert/alert-error.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/alert/alert-error.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/shared/alert/alert-error.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/alert/alert-error.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/alert/alert-error.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/alert/alert-error.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/alert/alert-error.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/alert/alert-error.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/alert/alert.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/alert/alert.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/shared/alert/alert.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/alert/alert.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/alert/alert.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/alert/alert.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/auth/has-any-authority.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/auth/has-any-authority.directive.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/auth/has-any-authority.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/auth/has-any-authority.directive.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/date/duration.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/date/duration.pipe.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/date/format-medium-date.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/date/format-medium-date.pipe.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/date/format-medium-date.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/date/format-medium-date.pipe.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/date/format-medium-datetime.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/date/format-medium-datetime.pipe.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/date/format-medium-datetime.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/date/format-medium-datetime.pipe.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/date/index.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/filter/filter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/filter/filter.component.html -------------------------------------------------------------------------------- /src/main/webapp/app/shared/filter/filter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/filter/filter.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/filter/filter.model.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/filter/filter.model.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/filter/filter.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/filter/filter.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/filter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/filter/index.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/language/find-language-from-key.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/language/find-language-from-key.pipe.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/language/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/language/index.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/language/translate.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/language/translate.directive.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/language/translate.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/language/translate.directive.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/language/translation.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/language/translation.module.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/pagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/pagination/index.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/pagination/item-count.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/pagination/item-count.component.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/pagination/item-count.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/pagination/item-count.component.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/sort/index.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/sort-by.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/sort/sort-by.directive.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/sort-by.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/sort/sort-by.directive.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/sort-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/sort/sort-state.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/sort.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/sort/sort.directive.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/sort.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/sort/sort.directive.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/sort.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/sort/sort.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/sort.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/app/shared/sort/sort.service.ts -------------------------------------------------------------------------------- /src/main/webapp/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/bootstrap.ts -------------------------------------------------------------------------------- /src/main/webapp/content/css/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/css/loading.css -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_0.svg -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_0_head-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_0_head-192.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_0_head-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_0_head-256.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_0_head-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_0_head-384.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_0_head-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_0_head-512.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_1.svg -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_1_head-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_1_head-192.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_1_head-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_1_head-256.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_1_head-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_1_head-384.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_1_head-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_1_head-512.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_2.svg -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_2_head-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_2_head-192.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_2_head-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_2_head-256.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_2_head-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_2_head-384.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_2_head-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_2_head-512.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_3.svg -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_3_head-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_3_head-192.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_3_head-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_3_head-256.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_3_head-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_3_head-384.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_3_head-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/jhipster_family_member_3_head-512.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/images/logo-jhipster.png -------------------------------------------------------------------------------- /src/main/webapp/content/scss/_bootstrap-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/scss/_bootstrap-variables.scss -------------------------------------------------------------------------------- /src/main/webapp/content/scss/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/scss/global.scss -------------------------------------------------------------------------------- /src/main/webapp/content/scss/vendor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/content/scss/vendor.scss -------------------------------------------------------------------------------- /src/main/webapp/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/declarations.d.ts -------------------------------------------------------------------------------- /src/main/webapp/environments/environment.development.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | VERSION: 'DEV', 3 | DEBUG_INFO_ENABLED: true, 4 | }; 5 | -------------------------------------------------------------------------------- /src/main/webapp/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/environments/environment.ts -------------------------------------------------------------------------------- /src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/activate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/i18n/en/activate.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/adminAuthority.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/i18n/en/adminAuthority.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/i18n/en/configuration.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/i18n/en/error.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/i18n/en/global.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/i18n/en/health.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/i18n/en/home.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/i18n/en/login.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/i18n/en/logs.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/i18n/en/metrics.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/password.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/i18n/en/password.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/i18n/en/register.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/reset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/i18n/en/reset.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/i18n/en/sessions.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/i18n/en/settings.json -------------------------------------------------------------------------------- /src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/index.html -------------------------------------------------------------------------------- /src/main/webapp/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/main.ts -------------------------------------------------------------------------------- /src/main/webapp/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/manifest.webapp -------------------------------------------------------------------------------- /src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /src/main/webapp/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/main/webapp/swagger-ui/index.html -------------------------------------------------------------------------------- /src/test/gatling/conf/gatling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/gatling/conf/gatling.conf -------------------------------------------------------------------------------- /src/test/gatling/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/gatling/conf/logback.xml -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/IntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/IntegrationTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/TechnicalStructureTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/TechnicalStructureTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/AsyncSyncConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/config/AsyncSyncConfiguration.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/CRLFLogConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/config/CRLFLogConverterTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/EmbeddedSQL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/config/EmbeddedSQL.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/MysqlTestContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/config/MysqlTestContainer.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/SpringBootTestClassOrderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/config/SpringBootTestClassOrderer.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/SqlTestContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/config/SqlTestContainer.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/SqlTestContainersSpringContextCustomizerFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/config/SqlTestContainersSpringContextCustomizerFactory.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/StaticResourcesWebConfigurerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/config/StaticResourcesWebConfigurerTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/TestSecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/config/TestSecurityConfiguration.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/WebConfigurerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/config/WebConfigurerTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/WebConfigurerTestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/config/WebConfigurerTestController.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/timezone/HibernateTimeZoneIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/config/timezone/HibernateTimeZoneIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/AssertUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/domain/AssertUtils.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/AuthorityAsserts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/domain/AuthorityAsserts.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/AuthorityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/domain/AuthorityTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/AuthorityTestSamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/domain/AuthorityTestSamples.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/repository/timezone/DateTimeWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/repository/timezone/DateTimeWrapper.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/repository/timezone/DateTimeWrapperRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/repository/timezone/DateTimeWrapperRepository.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/security/SecurityUtilsUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/security/SecurityUtilsUnitTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/security/oauth2/AudienceValidatorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/security/oauth2/AudienceValidatorTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/security/oauth2/CustomClaimConverterIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/security/oauth2/CustomClaimConverterIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/service/UserServiceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/service/UserServiceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/service/mapper/UserMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/service/mapper/UserMapperTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/test/util/OAuth2TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/test/util/OAuth2TestUtil.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/filter/SpaWebFilterIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/web/filter/SpaWebFilterIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/AccountResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/web/rest/AccountResourceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/AuthorityResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/web/rest/AuthorityResourceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/LogoutResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/web/rest/LogoutResourceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/PublicUserResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/web/rest/PublicUserResourceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/web/rest/TestUtil.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/UserResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/web/rest/UserResourceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/WithUnauthenticatedMockUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/web/rest/WithUnauthenticatedMockUser.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/errors/ExceptionTranslatorIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/web/rest/errors/ExceptionTranslatorIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/errors/ExceptionTranslatorTestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/java/io/github/jhipster/sample/web/rest/errors/ExceptionTranslatorTestController.java -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/account/logout.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/javascript/cypress/e2e/account/logout.cy.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/administration/administration.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/javascript/cypress/e2e/administration/administration.cy.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/entity/authority.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/javascript/cypress/e2e/entity/authority.cy.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/lighthouse.audits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/javascript/cypress/e2e/lighthouse.audits.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/fixtures/integration-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/javascript/cypress/fixtures/integration-test.png -------------------------------------------------------------------------------- /src/test/javascript/cypress/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/javascript/cypress/plugins/index.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/javascript/cypress/support/commands.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/support/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/javascript/cypress/support/entity.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/javascript/cypress/support/index.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/support/management.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/javascript/cypress/support/management.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/support/navbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/javascript/cypress/support/navbar.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/support/oauth2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/javascript/cypress/support/oauth2.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/javascript/cypress/tsconfig.json -------------------------------------------------------------------------------- /src/test/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /src/test/resources/config/application-testdev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/resources/config/application-testdev.yml -------------------------------------------------------------------------------- /src/test/resources/config/application-testprod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/resources/config/application-testprod.yml -------------------------------------------------------------------------------- /src/test/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/resources/config/application.yml -------------------------------------------------------------------------------- /src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/resources/junit-platform.properties -------------------------------------------------------------------------------- /src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/src/test/resources/logback.xml -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/webpack/environment.js -------------------------------------------------------------------------------- /webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /webpack/proxy.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/webpack/proxy.conf.js -------------------------------------------------------------------------------- /webpack/webpack.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-oauth2/HEAD/webpack/webpack.custom.js --------------------------------------------------------------------------------