├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── package.json ├── projects └── cognito-service │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── ng-package.prod.json │ ├── package.json │ ├── src │ ├── lib │ │ ├── cognito.service.ts │ │ ├── enums │ │ │ ├── auth-type.enum.ts │ │ │ └── resp-type.enum.ts │ │ └── models │ │ │ └── cognito-service-response.model.ts │ ├── public_api.ts │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.ts │ ├── app.module.ts │ ├── home │ │ ├── home-routing.module.ts │ │ ├── home.component.html │ │ ├── home.component.scss │ │ ├── home.component.ts │ │ └── home.module.ts │ ├── login │ │ ├── login-routing.module.ts │ │ ├── login.component.html │ │ ├── login.component.scss │ │ ├── login.component.ts │ │ └── login.module.ts │ ├── shared │ │ ├── consts │ │ │ └── cognito.const.ts │ │ ├── helpers │ │ │ ├── auth-guard.helper.ts │ │ │ └── cognito.helper.ts │ │ └── shared.module.ts │ └── static │ │ ├── not-found │ │ ├── not-found.component.html │ │ ├── not-found.component.scss │ │ └── not-found.component.ts │ │ ├── static-routing.module.ts │ │ └── static.module.ts ├── assets │ ├── .gitkeep │ └── i18n │ │ └── en.json ├── browserslist ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── tslint.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/package.json -------------------------------------------------------------------------------- /projects/cognito-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/projects/cognito-service/README.md -------------------------------------------------------------------------------- /projects/cognito-service/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/projects/cognito-service/karma.conf.js -------------------------------------------------------------------------------- /projects/cognito-service/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/projects/cognito-service/ng-package.json -------------------------------------------------------------------------------- /projects/cognito-service/ng-package.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/projects/cognito-service/ng-package.prod.json -------------------------------------------------------------------------------- /projects/cognito-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/projects/cognito-service/package.json -------------------------------------------------------------------------------- /projects/cognito-service/src/lib/cognito.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/projects/cognito-service/src/lib/cognito.service.ts -------------------------------------------------------------------------------- /projects/cognito-service/src/lib/enums/auth-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/projects/cognito-service/src/lib/enums/auth-type.enum.ts -------------------------------------------------------------------------------- /projects/cognito-service/src/lib/enums/resp-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/projects/cognito-service/src/lib/enums/resp-type.enum.ts -------------------------------------------------------------------------------- /projects/cognito-service/src/lib/models/cognito-service-response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/projects/cognito-service/src/lib/models/cognito-service-response.model.ts -------------------------------------------------------------------------------- /projects/cognito-service/src/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/projects/cognito-service/src/public_api.ts -------------------------------------------------------------------------------- /projects/cognito-service/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/projects/cognito-service/src/test.ts -------------------------------------------------------------------------------- /projects/cognito-service/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/projects/cognito-service/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/cognito-service/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/projects/cognito-service/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/cognito-service/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/projects/cognito-service/tslint.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/home/home-routing.module.ts -------------------------------------------------------------------------------- /src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/home/home.component.html -------------------------------------------------------------------------------- /src/app/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/home/home.component.ts -------------------------------------------------------------------------------- /src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/home/home.module.ts -------------------------------------------------------------------------------- /src/app/login/login-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/login/login-routing.module.ts -------------------------------------------------------------------------------- /src/app/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/login/login.component.html -------------------------------------------------------------------------------- /src/app/login/login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/login/login.component.scss -------------------------------------------------------------------------------- /src/app/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/login/login.component.ts -------------------------------------------------------------------------------- /src/app/login/login.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/login/login.module.ts -------------------------------------------------------------------------------- /src/app/shared/consts/cognito.const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/shared/consts/cognito.const.ts -------------------------------------------------------------------------------- /src/app/shared/helpers/auth-guard.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/shared/helpers/auth-guard.helper.ts -------------------------------------------------------------------------------- /src/app/shared/helpers/cognito.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/shared/helpers/cognito.helper.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/static/not-found/not-found.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/static/not-found/not-found.component.html -------------------------------------------------------------------------------- /src/app/static/not-found/not-found.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/static/not-found/not-found.component.scss -------------------------------------------------------------------------------- /src/app/static/not-found/not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/static/not-found/not-found.component.ts -------------------------------------------------------------------------------- /src/app/static/static-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/static/static-routing.module.ts -------------------------------------------------------------------------------- /src/app/static/static.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/app/static/static.module.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/assets/i18n/en.json -------------------------------------------------------------------------------- /src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/browserslist -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasRoehm/CognitoService/HEAD/tslint.json --------------------------------------------------------------------------------