├── .gitignore ├── CI-SPA ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── browserslist ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── auth │ │ │ ├── auth-routing.module.ts │ │ │ ├── auth.module.ts │ │ │ └── components │ │ │ │ ├── change-password │ │ │ │ ├── change-password.component.html │ │ │ │ ├── change-password.component.scss │ │ │ │ ├── change-password.component.spec.ts │ │ │ │ └── change-password.component.ts │ │ │ │ ├── confirm-email │ │ │ │ ├── confirm-email.component.html │ │ │ │ ├── confirm-email.component.scss │ │ │ │ ├── confirm-email.component.spec.ts │ │ │ │ └── confirm-email.component.ts │ │ │ │ ├── login │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.scss │ │ │ │ ├── login.component.spec.ts │ │ │ │ └── login.component.ts │ │ │ │ ├── register │ │ │ │ ├── register.component.html │ │ │ │ ├── register.component.scss │ │ │ │ ├── register.component.spec.ts │ │ │ │ └── register.component.ts │ │ │ │ └── reset-password │ │ │ │ ├── reset-password.component.html │ │ │ │ ├── reset-password.component.scss │ │ │ │ ├── reset-password.component.spec.ts │ │ │ │ └── reset-password.component.ts │ │ ├── employer-dashboard │ │ │ ├── components │ │ │ │ └── employer-edit │ │ │ │ │ ├── employer-edit.component.html │ │ │ │ │ ├── employer-edit.component.scss │ │ │ │ │ ├── employer-edit.component.spec.ts │ │ │ │ │ └── employer-edit.component.ts │ │ │ ├── employer-dashboard-routing.module.ts │ │ │ └── employer-dashboard.module.ts │ │ ├── pages │ │ │ └── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.scss │ │ │ │ ├── home.component.spec.ts │ │ │ │ └── home.component.ts │ │ ├── shared │ │ │ ├── components │ │ │ │ └── header │ │ │ │ │ ├── header.component.html │ │ │ │ │ ├── header.component.scss │ │ │ │ │ ├── header.component.spec.ts │ │ │ │ │ └── header.component.ts │ │ │ ├── layouts │ │ │ │ └── column-one │ │ │ │ │ ├── column-one.component.html │ │ │ │ │ ├── column-one.component.scss │ │ │ │ │ ├── column-one.component.spec.ts │ │ │ │ │ └── column-one.component.ts │ │ │ ├── models │ │ │ │ └── user.ts │ │ │ ├── services │ │ │ │ ├── auth.service.spec.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── employer.service.spec.ts │ │ │ │ ├── employer.service.ts │ │ │ │ ├── progress-bar.service.spec.ts │ │ │ │ └── progress-bar.service.ts │ │ │ └── shared.module.ts │ │ └── value │ │ │ ├── value.component.html │ │ │ ├── value.component.scss │ │ │ ├── value.component.spec.ts │ │ │ └── value.component.ts │ ├── assets │ │ ├── .gitkeep │ │ └── img │ │ │ ├── background.png │ │ │ └── computer.png │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── CI.API ├── CI.API.csproj ├── Controllers │ ├── AuthController.cs │ ├── EmployersController.cs │ └── ValuesController.cs ├── Helpers │ └── MapperProfiles.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── ViewModels │ ├── ChangePasswordViewModel.cs │ ├── ConfirmEmailViewModel.cs │ ├── CreateEmployerViewModel.cs │ ├── DeleteImageViewModel.cs │ ├── LoginViewModel.cs │ ├── ResetPasswordViewModel.cs │ ├── UpdateEmployerViewModel.cs │ └── UserViewModel.cs ├── appsettings.Development.json └── appsettings.json ├── CI.DAL ├── ApplicationDbContext.cs ├── CI.DAL.csproj ├── Entities │ ├── User.cs │ └── Value.cs └── Migrations │ ├── 20190828112938_AddIdentity.Designer.cs │ ├── 20190828112938_AddIdentity.cs │ ├── 20191109215558_addProfileImageUrlToUser.Designer.cs │ ├── 20191109215558_addProfileImageUrlToUser.cs │ └── ApplicationDbContextModelSnapshot.cs ├── CI.SER ├── AzureStorage.cs ├── CI.SER.csproj ├── DTOs │ ├── CloudStorageOptionsDTO.cs │ └── EmailOptionsDTO.cs ├── Factories │ └── StorageConnectionFactory.cs ├── Interfaces │ ├── ICloudStorage.cs │ ├── IEmail.cs │ └── IStorageConnectionFactory.cs └── MailJet.cs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/.gitignore -------------------------------------------------------------------------------- /CI-SPA/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/.editorconfig -------------------------------------------------------------------------------- /CI-SPA/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/.gitignore -------------------------------------------------------------------------------- /CI-SPA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/README.md -------------------------------------------------------------------------------- /CI-SPA/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/angular.json -------------------------------------------------------------------------------- /CI-SPA/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/browserslist -------------------------------------------------------------------------------- /CI-SPA/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/e2e/protractor.conf.js -------------------------------------------------------------------------------- /CI-SPA/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /CI-SPA/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/e2e/src/app.po.ts -------------------------------------------------------------------------------- /CI-SPA/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/e2e/tsconfig.json -------------------------------------------------------------------------------- /CI-SPA/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/karma.conf.js -------------------------------------------------------------------------------- /CI-SPA/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/package-lock.json -------------------------------------------------------------------------------- /CI-SPA/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/package.json -------------------------------------------------------------------------------- /CI-SPA/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/app.component.html -------------------------------------------------------------------------------- /CI-SPA/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CI-SPA/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/app.component.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/app.module.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/auth-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/auth-routing.module.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/auth.module.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/change-password/change-password.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/components/change-password/change-password.component.html -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/change-password/change-password.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/change-password/change-password.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/components/change-password/change-password.component.spec.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/change-password/change-password.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/components/change-password/change-password.component.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/confirm-email/confirm-email.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/components/confirm-email/confirm-email.component.html -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/confirm-email/confirm-email.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/confirm-email/confirm-email.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/components/confirm-email/confirm-email.component.spec.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/confirm-email/confirm-email.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/components/confirm-email/confirm-email.component.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/components/login/login.component.html -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/login/login.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/components/login/login.component.spec.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/components/login/login.component.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/components/register/register.component.html -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/register/register.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/register/register.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/components/register/register.component.spec.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/components/register/register.component.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/reset-password/reset-password.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/components/reset-password/reset-password.component.html -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/reset-password/reset-password.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/reset-password/reset-password.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/components/reset-password/reset-password.component.spec.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/auth/components/reset-password/reset-password.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/auth/components/reset-password/reset-password.component.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/employer-dashboard/components/employer-edit/employer-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/employer-dashboard/components/employer-edit/employer-edit.component.html -------------------------------------------------------------------------------- /CI-SPA/src/app/employer-dashboard/components/employer-edit/employer-edit.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CI-SPA/src/app/employer-dashboard/components/employer-edit/employer-edit.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/employer-dashboard/components/employer-edit/employer-edit.component.spec.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/employer-dashboard/components/employer-edit/employer-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/employer-dashboard/components/employer-edit/employer-edit.component.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/employer-dashboard/employer-dashboard-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/employer-dashboard/employer-dashboard-routing.module.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/employer-dashboard/employer-dashboard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/employer-dashboard/employer-dashboard.module.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/pages/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/pages/home/home.component.html -------------------------------------------------------------------------------- /CI-SPA/src/app/pages/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/pages/home/home.component.scss -------------------------------------------------------------------------------- /CI-SPA/src/app/pages/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/pages/home/home.component.spec.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/pages/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/pages/home/home.component.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/shared/components/header/header.component.html -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/components/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/shared/components/header/header.component.scss -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/components/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/shared/components/header/header.component.spec.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/shared/components/header/header.component.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/layouts/column-one/column-one.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/shared/layouts/column-one/column-one.component.html -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/layouts/column-one/column-one.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/layouts/column-one/column-one.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/shared/layouts/column-one/column-one.component.spec.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/layouts/column-one/column-one.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/shared/layouts/column-one/column-one.component.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/shared/models/user.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/services/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/shared/services/auth.service.spec.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/shared/services/auth.service.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/services/employer.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/shared/services/employer.service.spec.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/services/employer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/shared/services/employer.service.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/services/progress-bar.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/shared/services/progress-bar.service.spec.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/services/progress-bar.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/shared/services/progress-bar.service.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/value/value.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/value/value.component.html -------------------------------------------------------------------------------- /CI-SPA/src/app/value/value.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CI-SPA/src/app/value/value.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/value/value.component.spec.ts -------------------------------------------------------------------------------- /CI-SPA/src/app/value/value.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/app/value/value.component.ts -------------------------------------------------------------------------------- /CI-SPA/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CI-SPA/src/assets/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/assets/img/background.png -------------------------------------------------------------------------------- /CI-SPA/src/assets/img/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/assets/img/computer.png -------------------------------------------------------------------------------- /CI-SPA/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /CI-SPA/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/environments/environment.ts -------------------------------------------------------------------------------- /CI-SPA/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/favicon.ico -------------------------------------------------------------------------------- /CI-SPA/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/index.html -------------------------------------------------------------------------------- /CI-SPA/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/main.ts -------------------------------------------------------------------------------- /CI-SPA/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/polyfills.ts -------------------------------------------------------------------------------- /CI-SPA/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/styles.scss -------------------------------------------------------------------------------- /CI-SPA/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/src/test.ts -------------------------------------------------------------------------------- /CI-SPA/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/tsconfig.app.json -------------------------------------------------------------------------------- /CI-SPA/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/tsconfig.json -------------------------------------------------------------------------------- /CI-SPA/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/tsconfig.spec.json -------------------------------------------------------------------------------- /CI-SPA/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI-SPA/tslint.json -------------------------------------------------------------------------------- /CI.API/CI.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/CI.API.csproj -------------------------------------------------------------------------------- /CI.API/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/Controllers/AuthController.cs -------------------------------------------------------------------------------- /CI.API/Controllers/EmployersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/Controllers/EmployersController.cs -------------------------------------------------------------------------------- /CI.API/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /CI.API/Helpers/MapperProfiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/Helpers/MapperProfiles.cs -------------------------------------------------------------------------------- /CI.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/Program.cs -------------------------------------------------------------------------------- /CI.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /CI.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/Startup.cs -------------------------------------------------------------------------------- /CI.API/ViewModels/ChangePasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/ViewModels/ChangePasswordViewModel.cs -------------------------------------------------------------------------------- /CI.API/ViewModels/ConfirmEmailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/ViewModels/ConfirmEmailViewModel.cs -------------------------------------------------------------------------------- /CI.API/ViewModels/CreateEmployerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/ViewModels/CreateEmployerViewModel.cs -------------------------------------------------------------------------------- /CI.API/ViewModels/DeleteImageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/ViewModels/DeleteImageViewModel.cs -------------------------------------------------------------------------------- /CI.API/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /CI.API/ViewModels/ResetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/ViewModels/ResetPasswordViewModel.cs -------------------------------------------------------------------------------- /CI.API/ViewModels/UpdateEmployerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/ViewModels/UpdateEmployerViewModel.cs -------------------------------------------------------------------------------- /CI.API/ViewModels/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/ViewModels/UserViewModel.cs -------------------------------------------------------------------------------- /CI.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/appsettings.Development.json -------------------------------------------------------------------------------- /CI.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.API/appsettings.json -------------------------------------------------------------------------------- /CI.DAL/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.DAL/ApplicationDbContext.cs -------------------------------------------------------------------------------- /CI.DAL/CI.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.DAL/CI.DAL.csproj -------------------------------------------------------------------------------- /CI.DAL/Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.DAL/Entities/User.cs -------------------------------------------------------------------------------- /CI.DAL/Entities/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.DAL/Entities/Value.cs -------------------------------------------------------------------------------- /CI.DAL/Migrations/20190828112938_AddIdentity.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.DAL/Migrations/20190828112938_AddIdentity.Designer.cs -------------------------------------------------------------------------------- /CI.DAL/Migrations/20190828112938_AddIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.DAL/Migrations/20190828112938_AddIdentity.cs -------------------------------------------------------------------------------- /CI.DAL/Migrations/20191109215558_addProfileImageUrlToUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.DAL/Migrations/20191109215558_addProfileImageUrlToUser.Designer.cs -------------------------------------------------------------------------------- /CI.DAL/Migrations/20191109215558_addProfileImageUrlToUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.DAL/Migrations/20191109215558_addProfileImageUrlToUser.cs -------------------------------------------------------------------------------- /CI.DAL/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.DAL/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /CI.SER/AzureStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.SER/AzureStorage.cs -------------------------------------------------------------------------------- /CI.SER/CI.SER.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.SER/CI.SER.csproj -------------------------------------------------------------------------------- /CI.SER/DTOs/CloudStorageOptionsDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.SER/DTOs/CloudStorageOptionsDTO.cs -------------------------------------------------------------------------------- /CI.SER/DTOs/EmailOptionsDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.SER/DTOs/EmailOptionsDTO.cs -------------------------------------------------------------------------------- /CI.SER/Factories/StorageConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.SER/Factories/StorageConnectionFactory.cs -------------------------------------------------------------------------------- /CI.SER/Interfaces/ICloudStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.SER/Interfaces/ICloudStorage.cs -------------------------------------------------------------------------------- /CI.SER/Interfaces/IEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.SER/Interfaces/IEmail.cs -------------------------------------------------------------------------------- /CI.SER/Interfaces/IStorageConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.SER/Interfaces/IStorageConnectionFactory.cs -------------------------------------------------------------------------------- /CI.SER/MailJet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/CI.SER/MailJet.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike1477/ClockItApp/HEAD/README.md --------------------------------------------------------------------------------