├── .browserslistrc ├── .dockerignore ├── .editorconfig ├── .env ├── .github └── workflows │ ├── pipeline-dev-pr.yml │ ├── pipeline-dev-push.yml │ ├── pipeline-preprod-pr.yml │ ├── pipeline-preprod-push.yml │ ├── pipeline-prod-pr.yml │ ├── pipeline-prod-push.yml │ ├── pipeline-staging-pr.yml │ └── pipeline-staging-push.yml ├── .gitignore ├── Dockerfile ├── README.md ├── angular.json ├── azure-pipelines.yml ├── compose.yml ├── k8s ├── dev │ └── app-deployment-service.yml ├── preprod │ └── app-deployment-service.yml ├── prod │ └── app-deployment-service.yml └── staging │ └── app-deployment-service.yml ├── karma.conf.js ├── nginx.conf ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── component │ │ ├── about │ │ │ ├── about.component.html │ │ │ ├── about.component.scss │ │ │ ├── about.component.spec.ts │ │ │ └── about.component.ts │ │ ├── authentication │ │ │ ├── authentication.component.html │ │ │ ├── authentication.component.scss │ │ │ ├── authentication.component.spec.ts │ │ │ └── authentication.component.ts │ │ ├── contact │ │ │ ├── contact.component.html │ │ │ ├── contact.component.scss │ │ │ ├── contact.component.spec.ts │ │ │ └── contact.component.ts │ │ ├── error │ │ │ └── error404 │ │ │ │ ├── error404.component.html │ │ │ │ ├── error404.component.scss │ │ │ │ ├── error404.component.spec.ts │ │ │ │ └── error404.component.ts │ │ ├── home │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── location │ │ │ ├── location.component.html │ │ │ ├── location.component.scss │ │ │ ├── location.component.spec.ts │ │ │ └── location.component.ts │ │ ├── logout │ │ │ ├── logout.component.html │ │ │ ├── logout.component.scss │ │ │ ├── logout.component.spec.ts │ │ │ └── logout.component.ts │ │ ├── navbar │ │ │ ├── navbar.component.html │ │ │ ├── navbar.component.scss │ │ │ ├── navbar.component.spec.ts │ │ │ └── navbar.component.ts │ │ ├── registration │ │ │ ├── registration.component.html │ │ │ ├── registration.component.scss │ │ │ ├── registration.component.spec.ts │ │ │ └── registration.component.ts │ │ ├── saloon │ │ │ ├── saloon-calendar │ │ │ │ └── saloon-calendar │ │ │ │ │ ├── saloon-calendar.component.html │ │ │ │ │ ├── saloon-calendar.component.scss │ │ │ │ │ ├── saloon-calendar.component.spec.ts │ │ │ │ │ └── saloon-calendar.component.ts │ │ │ ├── saloon-detail │ │ │ │ ├── saloon-detail.component.html │ │ │ │ ├── saloon-detail.component.scss │ │ │ │ ├── saloon-detail.component.spec.ts │ │ │ │ └── saloon-detail.component.ts │ │ │ ├── saloon.component.html │ │ │ ├── saloon.component.scss │ │ │ ├── saloon.component.spec.ts │ │ │ └── saloon.component.ts │ │ └── workspace │ │ │ ├── customer │ │ │ ├── favourite │ │ │ │ ├── favourite.component.html │ │ │ │ ├── favourite.component.scss │ │ │ │ ├── favourite.component.spec.ts │ │ │ │ └── favourite.component.ts │ │ │ ├── index │ │ │ │ ├── index.component.html │ │ │ │ ├── index.component.scss │ │ │ │ ├── index.component.spec.ts │ │ │ │ └── index.component.ts │ │ │ ├── profile │ │ │ │ ├── profile.component.html │ │ │ │ ├── profile.component.scss │ │ │ │ ├── profile.component.spec.ts │ │ │ │ └── profile.component.ts │ │ │ ├── rating │ │ │ │ ├── rating.component.html │ │ │ │ ├── rating.component.scss │ │ │ │ ├── rating.component.spec.ts │ │ │ │ └── rating.component.ts │ │ │ └── reservation │ │ │ │ ├── assigned-worker │ │ │ │ ├── assigned-worker.component.html │ │ │ │ ├── assigned-worker.component.scss │ │ │ │ ├── assigned-worker.component.spec.ts │ │ │ │ └── assigned-worker.component.ts │ │ │ │ ├── reservation-details │ │ │ │ ├── reservation-details.component.html │ │ │ │ ├── reservation-details.component.scss │ │ │ │ ├── reservation-details.component.spec.ts │ │ │ │ └── reservation-details.component.ts │ │ │ │ ├── reservation.component.html │ │ │ │ ├── reservation.component.scss │ │ │ │ ├── reservation.component.spec.ts │ │ │ │ └── reservation.component.ts │ │ │ ├── manager │ │ │ ├── category │ │ │ │ ├── category.component.html │ │ │ │ ├── category.component.scss │ │ │ │ ├── category.component.spec.ts │ │ │ │ └── category.component.ts │ │ │ ├── index │ │ │ │ ├── index.component.html │ │ │ │ ├── index.component.scss │ │ │ │ ├── index.component.spec.ts │ │ │ │ └── index.component.ts │ │ │ ├── profile │ │ │ │ ├── profile.component.html │ │ │ │ ├── profile.component.scss │ │ │ │ ├── profile.component.spec.ts │ │ │ │ └── profile.component.ts │ │ │ ├── reservation │ │ │ │ ├── reservation-calendar │ │ │ │ │ ├── reservation-calendar.component.html │ │ │ │ │ ├── reservation-calendar.component.scss │ │ │ │ │ ├── reservation-calendar.component.spec.ts │ │ │ │ │ └── reservation-calendar.component.ts │ │ │ │ ├── reservation-detail │ │ │ │ │ ├── reservation-detail.component.html │ │ │ │ │ ├── reservation-detail.component.scss │ │ │ │ │ ├── reservation-detail.component.spec.ts │ │ │ │ │ └── reservation-detail.component.ts │ │ │ │ ├── reservation.component.html │ │ │ │ ├── reservation.component.scss │ │ │ │ ├── reservation.component.spec.ts │ │ │ │ └── reservation.component.ts │ │ │ ├── service-detail │ │ │ │ ├── service-detail.component.html │ │ │ │ ├── service-detail.component.scss │ │ │ │ ├── service-detail.component.spec.ts │ │ │ │ └── service-detail.component.ts │ │ │ └── worker │ │ │ │ ├── worker-assignment │ │ │ │ ├── worker-assignment.component.html │ │ │ │ ├── worker-assignment.component.scss │ │ │ │ ├── worker-assignment.component.spec.ts │ │ │ │ └── worker-assignment.component.ts │ │ │ │ ├── worker.component.html │ │ │ │ ├── worker.component.scss │ │ │ │ ├── worker.component.spec.ts │ │ │ │ └── worker.component.ts │ │ │ ├── owner │ │ │ ├── index │ │ │ │ ├── index.component.html │ │ │ │ ├── index.component.scss │ │ │ │ ├── index.component.spec.ts │ │ │ │ └── index.component.ts │ │ │ └── profile │ │ │ │ ├── profile.component.html │ │ │ │ ├── profile.component.scss │ │ │ │ ├── profile.component.spec.ts │ │ │ │ └── profile.component.ts │ │ │ └── worker │ │ │ ├── index │ │ │ ├── index.component.html │ │ │ ├── index.component.scss │ │ │ ├── index.component.spec.ts │ │ │ └── index.component.ts │ │ │ ├── profile │ │ │ ├── profile.component.html │ │ │ ├── profile.component.scss │ │ │ ├── profile.component.spec.ts │ │ │ └── profile.component.ts │ │ │ └── reservation │ │ │ ├── reservation-calendar │ │ │ ├── reservation-calendar.component.html │ │ │ ├── reservation-calendar.component.scss │ │ │ ├── reservation-calendar.component.spec.ts │ │ │ └── reservation-calendar.component.ts │ │ │ ├── reservation-details │ │ │ ├── reservation-details.component.html │ │ │ ├── reservation-details.component.scss │ │ │ ├── reservation-details.component.spec.ts │ │ │ └── reservation-details.component.ts │ │ │ ├── reservation.component.html │ │ │ ├── reservation.component.scss │ │ │ ├── reservation.component.spec.ts │ │ │ └── reservation.component.ts │ ├── guard │ │ ├── authentication.guard.spec.ts │ │ ├── authentication.guard.ts │ │ ├── customer.guard.spec.ts │ │ ├── customer.guard.ts │ │ ├── manager.guard.spec.ts │ │ ├── manager.guard.ts │ │ ├── owner.guard.spec.ts │ │ ├── owner.guard.ts │ │ ├── registration.guard.spec.ts │ │ ├── registration.guard.ts │ │ ├── saloon-detail.guard.spec.ts │ │ ├── saloon-detail.guard.ts │ │ ├── worker.guard.spec.ts │ │ └── worker.guard.ts │ ├── model │ │ ├── category.spec.ts │ │ ├── category.ts │ │ ├── credential.spec.ts │ │ ├── credential.ts │ │ ├── customer.spec.ts │ │ ├── customer.ts │ │ ├── date-backend-format.ts │ │ ├── employee.spec.ts │ │ ├── employee.ts │ │ ├── exception-msg.spec.ts │ │ ├── exception-msg.ts │ │ ├── favourite.spec.ts │ │ ├── favourite.ts │ │ ├── location.spec.ts │ │ ├── location.ts │ │ ├── ordered-detail-id.spec.ts │ │ ├── ordered-detail-id.ts │ │ ├── ordered-detail.spec.ts │ │ ├── ordered-detail.ts │ │ ├── rating.spec.ts │ │ ├── rating.ts │ │ ├── request │ │ │ ├── category-request.spec.ts │ │ │ ├── category-request.ts │ │ │ ├── client-page-request.spec.ts │ │ │ ├── client-page-request.ts │ │ │ ├── customer-profile-info-request.spec.ts │ │ │ ├── customer-profile-info-request.ts │ │ │ ├── login-request.spec.ts │ │ │ ├── login-request.ts │ │ │ ├── manager-profile-request.spec.ts │ │ │ ├── manager-profile-request.ts │ │ │ ├── ordered-detail-request.spec.ts │ │ │ ├── ordered-detail-request.ts │ │ │ ├── register-request.spec.ts │ │ │ ├── register-request.ts │ │ │ ├── reservation-assign-worker-request.spec.ts │ │ │ ├── reservation-assign-worker-request.ts │ │ │ ├── reservation-detail-request.spec.ts │ │ │ ├── reservation-detail-request.ts │ │ │ ├── reservation-request.spec.ts │ │ │ ├── reservation-request.ts │ │ │ ├── service-detail-request.spec.ts │ │ │ ├── service-detail-request.ts │ │ │ ├── task-begin-end-request.spec.ts │ │ │ ├── task-begin-end-request.ts │ │ │ ├── task-update-description-request.spec.ts │ │ │ ├── task-update-description-request.ts │ │ │ ├── worker-profile-request.spec.ts │ │ │ └── worker-profile-request.ts │ │ ├── reservation-status.ts │ │ ├── reservation.spec.ts │ │ ├── reservation.ts │ │ ├── response │ │ │ ├── api │ │ │ │ ├── api-payload-credential.spec.ts │ │ │ │ ├── api-payload-credential.ts │ │ │ │ ├── api-payload-customer-favourite-response.spec.ts │ │ │ │ ├── api-payload-customer-favourite-response.ts │ │ │ │ ├── api-payload-customer-profile-response.ts │ │ │ │ ├── api-payload-customer-reservation-response.spec.ts │ │ │ │ ├── api-payload-customer-reservation-response.ts │ │ │ │ ├── api-payload-d-exception-msg.spec.ts │ │ │ │ ├── api-payload-d-exception-msg.ts │ │ │ │ ├── api-payload-login-response.spec.ts │ │ │ │ ├── api-payload-login-response.ts │ │ │ │ ├── api-payload-register-response.spec.ts │ │ │ │ ├── api-payload-register-response.ts │ │ │ │ ├── api-payload-reservation-container-response.spec.ts │ │ │ │ ├── api-payload-reservation-container-response.ts │ │ │ │ ├── api-payload-reservation.spec.ts │ │ │ │ ├── api-payload-reservation.ts │ │ │ │ ├── api-payload-saloon-list.spec.ts │ │ │ │ ├── api-payload-saloon-list.ts │ │ │ │ ├── api-payload-saloon.spec.ts │ │ │ │ ├── api-payload-saloon.ts │ │ │ │ ├── api-payload-service-details-reservation-container-response.spec.ts │ │ │ │ ├── api-payload-service-details-reservation-container-response.ts │ │ │ │ ├── api-payload-tag.spec.ts │ │ │ │ ├── api-payload-tag.ts │ │ │ │ ├── api-payload-task-list.spec.ts │ │ │ │ └── api-payload-task-list.ts │ │ │ ├── container │ │ │ │ ├── customer-container-response.spec.ts │ │ │ │ └── customer-container-response.ts │ │ │ ├── customer-favourite-response.spec.ts │ │ │ ├── customer-favourite-response.ts │ │ │ ├── customer-profile-response.spec.ts │ │ │ ├── customer-profile-response.ts │ │ │ ├── customer-reservation-response.spec.ts │ │ │ ├── customer-reservation-response.ts │ │ │ ├── login-response.spec.ts │ │ │ ├── login-response.ts │ │ │ ├── manager-profile-response.spec.ts │ │ │ ├── manager-profile-response.ts │ │ │ ├── manager-reservation-response.spec.ts │ │ │ ├── manager-reservation-response.ts │ │ │ ├── manager-worker-assignment-response.spec.ts │ │ │ ├── manager-worker-assignment-response.ts │ │ │ ├── manager-worker-info-response.spec.ts │ │ │ ├── manager-worker-info-response.ts │ │ │ ├── page │ │ │ │ ├── page-response.spec.ts │ │ │ │ ├── page-response.ts │ │ │ │ ├── pageable-response.spec.ts │ │ │ │ ├── pageable-response.ts │ │ │ │ ├── sort-response.spec.ts │ │ │ │ └── sort-response.ts │ │ │ ├── register-response.spec.ts │ │ │ ├── register-response.ts │ │ │ ├── reservation-begin-end-task-response.spec.ts │ │ │ ├── reservation-begin-end-task-response.ts │ │ │ ├── reservation-container-response.spec.ts │ │ │ ├── reservation-container-response.ts │ │ │ ├── reservation-sub-worker-response.spec.ts │ │ │ ├── reservation-sub-worker-response.ts │ │ │ ├── service-details-reservation-container-response.spec.ts │ │ │ ├── service-details-reservation-container-response.ts │ │ │ ├── worker-profile-response.spec.ts │ │ │ └── worker-profile-response.ts │ │ ├── saloon-image.spec.ts │ │ ├── saloon-image.ts │ │ ├── saloon-tag.spec.ts │ │ ├── saloon-tag.ts │ │ ├── saloon.spec.ts │ │ ├── saloon.ts │ │ ├── service-detail.spec.ts │ │ ├── service-detail.ts │ │ ├── tag.spec.ts │ │ ├── tag.ts │ │ ├── task.spec.ts │ │ ├── task.ts │ │ ├── toastr-msg.spec.ts │ │ ├── toastr-msg.ts │ │ ├── user-image.spec.ts │ │ ├── user-image.ts │ │ ├── user-rating.ts │ │ └── user-role-based-authority.ts │ └── service │ │ ├── authentication.service.spec.ts │ │ ├── authentication.service.ts │ │ ├── calendar.service.spec.ts │ │ ├── calendar.service.ts │ │ ├── category.service.spec.ts │ │ ├── category.service.ts │ │ ├── credential.service.spec.ts │ │ ├── credential.service.ts │ │ ├── customer.service.spec.ts │ │ ├── customer.service.ts │ │ ├── customer │ │ ├── customer-favourite.service.spec.ts │ │ ├── customer-favourite.service.ts │ │ ├── customer-profile.service.spec.ts │ │ ├── customer-profile.service.ts │ │ ├── customer-reservation-detail.service.spec.ts │ │ ├── customer-reservation-detail.service.ts │ │ ├── customer-reservation.service.spec.ts │ │ └── customer-reservation.service.ts │ │ ├── employee.service.spec.ts │ │ ├── employee.service.ts │ │ ├── employee │ │ ├── manager │ │ │ ├── manager-category.service.spec.ts │ │ │ ├── manager-category.service.ts │ │ │ ├── manager-profile.service.spec.ts │ │ │ ├── manager-profile.service.ts │ │ │ ├── manager-reservation-detail.service.spec.ts │ │ │ ├── manager-reservation-detail.service.ts │ │ │ ├── manager-reservation.service.spec.ts │ │ │ ├── manager-reservation.service.ts │ │ │ ├── manager-service-detail.service.spec.ts │ │ │ ├── manager-service-detail.service.ts │ │ │ ├── manager-worker-assignment.service.spec.ts │ │ │ ├── manager-worker-assignment.service.ts │ │ │ ├── manager-worker-service.service.spec.ts │ │ │ └── manager-worker-service.service.ts │ │ └── worker │ │ │ ├── worker-profile.service.spec.ts │ │ │ ├── worker-profile.service.ts │ │ │ ├── worker-reservation-detail.service.spec.ts │ │ │ ├── worker-reservation-detail.service.ts │ │ │ ├── worker-reservation-task.service.spec.ts │ │ │ ├── worker-reservation-task.service.ts │ │ │ ├── worker-reservation.service.spec.ts │ │ │ └── worker-reservation.service.ts │ │ ├── error-handler.service.spec.ts │ │ ├── error-handler.service.ts │ │ ├── health-liveness.service.spec.ts │ │ ├── health-liveness.service.ts │ │ ├── location.service.spec.ts │ │ ├── location.service.ts │ │ ├── notification.service.spec.ts │ │ ├── notification.service.ts │ │ ├── ordered-detail.service.spec.ts │ │ ├── ordered-detail.service.ts │ │ ├── registration.service.spec.ts │ │ ├── registration.service.ts │ │ ├── reservation.service.spec.ts │ │ ├── reservation.service.ts │ │ ├── saloon.service.spec.ts │ │ ├── saloon.service.ts │ │ ├── service-detail.service.spec.ts │ │ ├── service-detail.service.ts │ │ ├── tag.service.spec.ts │ │ ├── tag.service.ts │ │ ├── task.service.spec.ts │ │ └── task.service.ts ├── assets │ ├── .gitkeep │ ├── barbershop.png │ └── home │ │ ├── css │ │ └── styles.css │ │ ├── images │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ └── 4.jpg │ │ └── js │ │ └── scripts.js ├── environments │ ├── environment.preprod.ts │ ├── environment.prod.ts │ ├── environment.staging.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/pipeline-dev-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/.github/workflows/pipeline-dev-pr.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-dev-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/.github/workflows/pipeline-dev-push.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-preprod-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/.github/workflows/pipeline-preprod-pr.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-preprod-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/.github/workflows/pipeline-preprod-push.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-prod-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/.github/workflows/pipeline-prod-pr.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-prod-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/.github/workflows/pipeline-prod-push.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-staging-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/.github/workflows/pipeline-staging-pr.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-staging-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/.github/workflows/pipeline-staging-push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/angular.json -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/compose.yml -------------------------------------------------------------------------------- /k8s/dev/app-deployment-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/k8s/dev/app-deployment-service.yml -------------------------------------------------------------------------------- /k8s/preprod/app-deployment-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/k8s/preprod/app-deployment-service.yml -------------------------------------------------------------------------------- /k8s/prod/app-deployment-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/k8s/prod/app-deployment-service.yml -------------------------------------------------------------------------------- /k8s/staging/app-deployment-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/k8s/staging/app-deployment-service.yml -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/karma.conf.js -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/nginx.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/component/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/about/about.component.html -------------------------------------------------------------------------------- /src/app/component/about/about.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/about/about.component.scss -------------------------------------------------------------------------------- /src/app/component/about/about.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/about/about.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/about/about.component.ts -------------------------------------------------------------------------------- /src/app/component/authentication/authentication.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/authentication/authentication.component.html -------------------------------------------------------------------------------- /src/app/component/authentication/authentication.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/authentication/authentication.component.scss -------------------------------------------------------------------------------- /src/app/component/authentication/authentication.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/authentication/authentication.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/authentication/authentication.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/authentication/authentication.component.ts -------------------------------------------------------------------------------- /src/app/component/contact/contact.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/contact/contact.component.html -------------------------------------------------------------------------------- /src/app/component/contact/contact.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/contact/contact.component.scss -------------------------------------------------------------------------------- /src/app/component/contact/contact.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/contact/contact.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/contact/contact.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/contact/contact.component.ts -------------------------------------------------------------------------------- /src/app/component/error/error404/error404.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/error/error404/error404.component.html -------------------------------------------------------------------------------- /src/app/component/error/error404/error404.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/error/error404/error404.component.scss -------------------------------------------------------------------------------- /src/app/component/error/error404/error404.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/error/error404/error404.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/error/error404/error404.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/error/error404/error404.component.ts -------------------------------------------------------------------------------- /src/app/component/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/home/home.component.html -------------------------------------------------------------------------------- /src/app/component/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/home/home.component.ts -------------------------------------------------------------------------------- /src/app/component/location/location.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/location/location.component.html -------------------------------------------------------------------------------- /src/app/component/location/location.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/location/location.component.scss -------------------------------------------------------------------------------- /src/app/component/location/location.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/location/location.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/location/location.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/location/location.component.ts -------------------------------------------------------------------------------- /src/app/component/logout/logout.component.html: -------------------------------------------------------------------------------- 1 |

logout works!

2 | -------------------------------------------------------------------------------- /src/app/component/logout/logout.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/logout/logout.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/logout/logout.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/logout/logout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/logout/logout.component.ts -------------------------------------------------------------------------------- /src/app/component/navbar/navbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/navbar/navbar.component.html -------------------------------------------------------------------------------- /src/app/component/navbar/navbar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/navbar/navbar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/navbar/navbar.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/navbar/navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/navbar/navbar.component.ts -------------------------------------------------------------------------------- /src/app/component/registration/registration.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/registration/registration.component.html -------------------------------------------------------------------------------- /src/app/component/registration/registration.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/registration/registration.component.scss -------------------------------------------------------------------------------- /src/app/component/registration/registration.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/registration/registration.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/registration/registration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/registration/registration.component.ts -------------------------------------------------------------------------------- /src/app/component/saloon/saloon-calendar/saloon-calendar/saloon-calendar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/saloon/saloon-calendar/saloon-calendar/saloon-calendar.component.html -------------------------------------------------------------------------------- /src/app/component/saloon/saloon-calendar/saloon-calendar/saloon-calendar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/saloon/saloon-calendar/saloon-calendar/saloon-calendar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/saloon/saloon-calendar/saloon-calendar/saloon-calendar.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/saloon/saloon-calendar/saloon-calendar/saloon-calendar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/saloon/saloon-calendar/saloon-calendar/saloon-calendar.component.ts -------------------------------------------------------------------------------- /src/app/component/saloon/saloon-detail/saloon-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/saloon/saloon-detail/saloon-detail.component.html -------------------------------------------------------------------------------- /src/app/component/saloon/saloon-detail/saloon-detail.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/saloon/saloon-detail/saloon-detail.component.scss -------------------------------------------------------------------------------- /src/app/component/saloon/saloon-detail/saloon-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/saloon/saloon-detail/saloon-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/saloon/saloon-detail/saloon-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/saloon/saloon-detail/saloon-detail.component.ts -------------------------------------------------------------------------------- /src/app/component/saloon/saloon.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/saloon/saloon.component.html -------------------------------------------------------------------------------- /src/app/component/saloon/saloon.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/saloon/saloon.component.scss -------------------------------------------------------------------------------- /src/app/component/saloon/saloon.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/saloon/saloon.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/saloon/saloon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/saloon/saloon.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/customer/favourite/favourite.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/favourite/favourite.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/customer/favourite/favourite.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/favourite/favourite.component.scss -------------------------------------------------------------------------------- /src/app/component/workspace/customer/favourite/favourite.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/favourite/favourite.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/customer/favourite/favourite.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/favourite/favourite.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/customer/index/index.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/index/index.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/customer/index/index.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/workspace/customer/index/index.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/index/index.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/customer/index/index.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/index/index.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/customer/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/profile/profile.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/customer/profile/profile.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/profile/profile.component.scss -------------------------------------------------------------------------------- /src/app/component/workspace/customer/profile/profile.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/profile/profile.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/customer/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/profile/profile.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/customer/rating/rating.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/rating/rating.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/customer/rating/rating.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/rating/rating.component.scss -------------------------------------------------------------------------------- /src/app/component/workspace/customer/rating/rating.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/rating/rating.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/customer/rating/rating.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/rating/rating.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/customer/reservation/assigned-worker/assigned-worker.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/reservation/assigned-worker/assigned-worker.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/customer/reservation/assigned-worker/assigned-worker.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/reservation/assigned-worker/assigned-worker.component.scss -------------------------------------------------------------------------------- /src/app/component/workspace/customer/reservation/assigned-worker/assigned-worker.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/reservation/assigned-worker/assigned-worker.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/customer/reservation/assigned-worker/assigned-worker.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/reservation/assigned-worker/assigned-worker.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/customer/reservation/reservation-details/reservation-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/reservation/reservation-details/reservation-details.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/customer/reservation/reservation-details/reservation-details.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/reservation/reservation-details/reservation-details.component.scss -------------------------------------------------------------------------------- /src/app/component/workspace/customer/reservation/reservation-details/reservation-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/reservation/reservation-details/reservation-details.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/customer/reservation/reservation-details/reservation-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/reservation/reservation-details/reservation-details.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/customer/reservation/reservation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/reservation/reservation.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/customer/reservation/reservation.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/reservation/reservation.component.scss -------------------------------------------------------------------------------- /src/app/component/workspace/customer/reservation/reservation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/reservation/reservation.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/customer/reservation/reservation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/customer/reservation/reservation.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/category/category.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/category/category.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/manager/category/category.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/category/category.component.scss -------------------------------------------------------------------------------- /src/app/component/workspace/manager/category/category.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/category/category.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/category/category.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/category/category.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/index/index.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/index/index.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/manager/index/index.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/workspace/manager/index/index.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/index/index.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/index/index.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/index/index.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/profile/profile.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/manager/profile/profile.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/profile/profile.component.scss -------------------------------------------------------------------------------- /src/app/component/workspace/manager/profile/profile.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/profile/profile.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/profile/profile.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/reservation/reservation-calendar/reservation-calendar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/reservation/reservation-calendar/reservation-calendar.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/manager/reservation/reservation-calendar/reservation-calendar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/workspace/manager/reservation/reservation-calendar/reservation-calendar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/reservation/reservation-calendar/reservation-calendar.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/reservation/reservation-calendar/reservation-calendar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/reservation/reservation-calendar/reservation-calendar.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/reservation/reservation-detail/reservation-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/reservation/reservation-detail/reservation-detail.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/manager/reservation/reservation-detail/reservation-detail.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/reservation/reservation-detail/reservation-detail.component.scss -------------------------------------------------------------------------------- /src/app/component/workspace/manager/reservation/reservation-detail/reservation-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/reservation/reservation-detail/reservation-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/reservation/reservation-detail/reservation-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/reservation/reservation-detail/reservation-detail.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/reservation/reservation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/reservation/reservation.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/manager/reservation/reservation.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/workspace/manager/reservation/reservation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/reservation/reservation.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/reservation/reservation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/reservation/reservation.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/service-detail/service-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/service-detail/service-detail.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/manager/service-detail/service-detail.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/service-detail/service-detail.component.scss -------------------------------------------------------------------------------- /src/app/component/workspace/manager/service-detail/service-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/service-detail/service-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/service-detail/service-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/service-detail/service-detail.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/worker/worker-assignment/worker-assignment.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/worker/worker-assignment/worker-assignment.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/manager/worker/worker-assignment/worker-assignment.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/worker/worker-assignment/worker-assignment.component.scss -------------------------------------------------------------------------------- /src/app/component/workspace/manager/worker/worker-assignment/worker-assignment.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/worker/worker-assignment/worker-assignment.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/worker/worker-assignment/worker-assignment.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/worker/worker-assignment/worker-assignment.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/worker/worker.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/worker/worker.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/manager/worker/worker.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/worker/worker.component.scss -------------------------------------------------------------------------------- /src/app/component/workspace/manager/worker/worker.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/worker/worker.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/manager/worker/worker.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/manager/worker/worker.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/owner/index/index.component.html: -------------------------------------------------------------------------------- 1 |

index works!

2 | -------------------------------------------------------------------------------- /src/app/component/workspace/owner/index/index.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/workspace/owner/index/index.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/owner/index/index.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/owner/index/index.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/owner/index/index.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/owner/profile/profile.component.html: -------------------------------------------------------------------------------- 1 |

profile works!

2 | -------------------------------------------------------------------------------- /src/app/component/workspace/owner/profile/profile.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/workspace/owner/profile/profile.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/owner/profile/profile.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/owner/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/owner/profile/profile.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/worker/index/index.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/index/index.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/worker/index/index.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/workspace/worker/index/index.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/index/index.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/worker/index/index.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/index/index.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/worker/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/profile/profile.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/worker/profile/profile.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/profile/profile.component.scss -------------------------------------------------------------------------------- /src/app/component/workspace/worker/profile/profile.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/profile/profile.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/worker/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/profile/profile.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/worker/reservation/reservation-calendar/reservation-calendar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/reservation/reservation-calendar/reservation-calendar.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/worker/reservation/reservation-calendar/reservation-calendar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/workspace/worker/reservation/reservation-calendar/reservation-calendar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/reservation/reservation-calendar/reservation-calendar.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/worker/reservation/reservation-calendar/reservation-calendar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/reservation/reservation-calendar/reservation-calendar.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/worker/reservation/reservation-details/reservation-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/reservation/reservation-details/reservation-details.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/worker/reservation/reservation-details/reservation-details.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/reservation/reservation-details/reservation-details.component.scss -------------------------------------------------------------------------------- /src/app/component/workspace/worker/reservation/reservation-details/reservation-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/reservation/reservation-details/reservation-details.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/worker/reservation/reservation-details/reservation-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/reservation/reservation-details/reservation-details.component.ts -------------------------------------------------------------------------------- /src/app/component/workspace/worker/reservation/reservation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/reservation/reservation.component.html -------------------------------------------------------------------------------- /src/app/component/workspace/worker/reservation/reservation.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/reservation/reservation.component.scss -------------------------------------------------------------------------------- /src/app/component/workspace/worker/reservation/reservation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/reservation/reservation.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/workspace/worker/reservation/reservation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/component/workspace/worker/reservation/reservation.component.ts -------------------------------------------------------------------------------- /src/app/guard/authentication.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/guard/authentication.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guard/authentication.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/guard/authentication.guard.ts -------------------------------------------------------------------------------- /src/app/guard/customer.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/guard/customer.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guard/customer.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/guard/customer.guard.ts -------------------------------------------------------------------------------- /src/app/guard/manager.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/guard/manager.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guard/manager.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/guard/manager.guard.ts -------------------------------------------------------------------------------- /src/app/guard/owner.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/guard/owner.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guard/owner.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/guard/owner.guard.ts -------------------------------------------------------------------------------- /src/app/guard/registration.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/guard/registration.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guard/registration.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/guard/registration.guard.ts -------------------------------------------------------------------------------- /src/app/guard/saloon-detail.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/guard/saloon-detail.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guard/saloon-detail.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/guard/saloon-detail.guard.ts -------------------------------------------------------------------------------- /src/app/guard/worker.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/guard/worker.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guard/worker.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/guard/worker.guard.ts -------------------------------------------------------------------------------- /src/app/model/category.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/category.spec.ts -------------------------------------------------------------------------------- /src/app/model/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/category.ts -------------------------------------------------------------------------------- /src/app/model/credential.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/credential.spec.ts -------------------------------------------------------------------------------- /src/app/model/credential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/credential.ts -------------------------------------------------------------------------------- /src/app/model/customer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/customer.spec.ts -------------------------------------------------------------------------------- /src/app/model/customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/customer.ts -------------------------------------------------------------------------------- /src/app/model/date-backend-format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/date-backend-format.ts -------------------------------------------------------------------------------- /src/app/model/employee.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/employee.spec.ts -------------------------------------------------------------------------------- /src/app/model/employee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/employee.ts -------------------------------------------------------------------------------- /src/app/model/exception-msg.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/exception-msg.spec.ts -------------------------------------------------------------------------------- /src/app/model/exception-msg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/exception-msg.ts -------------------------------------------------------------------------------- /src/app/model/favourite.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/favourite.spec.ts -------------------------------------------------------------------------------- /src/app/model/favourite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/favourite.ts -------------------------------------------------------------------------------- /src/app/model/location.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/location.spec.ts -------------------------------------------------------------------------------- /src/app/model/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/location.ts -------------------------------------------------------------------------------- /src/app/model/ordered-detail-id.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/ordered-detail-id.spec.ts -------------------------------------------------------------------------------- /src/app/model/ordered-detail-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/ordered-detail-id.ts -------------------------------------------------------------------------------- /src/app/model/ordered-detail.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/ordered-detail.spec.ts -------------------------------------------------------------------------------- /src/app/model/ordered-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/ordered-detail.ts -------------------------------------------------------------------------------- /src/app/model/rating.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/rating.spec.ts -------------------------------------------------------------------------------- /src/app/model/rating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/rating.ts -------------------------------------------------------------------------------- /src/app/model/request/category-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/category-request.spec.ts -------------------------------------------------------------------------------- /src/app/model/request/category-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/category-request.ts -------------------------------------------------------------------------------- /src/app/model/request/client-page-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/client-page-request.spec.ts -------------------------------------------------------------------------------- /src/app/model/request/client-page-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/client-page-request.ts -------------------------------------------------------------------------------- /src/app/model/request/customer-profile-info-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/customer-profile-info-request.spec.ts -------------------------------------------------------------------------------- /src/app/model/request/customer-profile-info-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/customer-profile-info-request.ts -------------------------------------------------------------------------------- /src/app/model/request/login-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/login-request.spec.ts -------------------------------------------------------------------------------- /src/app/model/request/login-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/login-request.ts -------------------------------------------------------------------------------- /src/app/model/request/manager-profile-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/manager-profile-request.spec.ts -------------------------------------------------------------------------------- /src/app/model/request/manager-profile-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/manager-profile-request.ts -------------------------------------------------------------------------------- /src/app/model/request/ordered-detail-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/ordered-detail-request.spec.ts -------------------------------------------------------------------------------- /src/app/model/request/ordered-detail-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/ordered-detail-request.ts -------------------------------------------------------------------------------- /src/app/model/request/register-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/register-request.spec.ts -------------------------------------------------------------------------------- /src/app/model/request/register-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/register-request.ts -------------------------------------------------------------------------------- /src/app/model/request/reservation-assign-worker-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/reservation-assign-worker-request.spec.ts -------------------------------------------------------------------------------- /src/app/model/request/reservation-assign-worker-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/reservation-assign-worker-request.ts -------------------------------------------------------------------------------- /src/app/model/request/reservation-detail-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/reservation-detail-request.spec.ts -------------------------------------------------------------------------------- /src/app/model/request/reservation-detail-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/reservation-detail-request.ts -------------------------------------------------------------------------------- /src/app/model/request/reservation-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/reservation-request.spec.ts -------------------------------------------------------------------------------- /src/app/model/request/reservation-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/reservation-request.ts -------------------------------------------------------------------------------- /src/app/model/request/service-detail-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/service-detail-request.spec.ts -------------------------------------------------------------------------------- /src/app/model/request/service-detail-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/service-detail-request.ts -------------------------------------------------------------------------------- /src/app/model/request/task-begin-end-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/task-begin-end-request.spec.ts -------------------------------------------------------------------------------- /src/app/model/request/task-begin-end-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/task-begin-end-request.ts -------------------------------------------------------------------------------- /src/app/model/request/task-update-description-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/task-update-description-request.spec.ts -------------------------------------------------------------------------------- /src/app/model/request/task-update-description-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/task-update-description-request.ts -------------------------------------------------------------------------------- /src/app/model/request/worker-profile-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/worker-profile-request.spec.ts -------------------------------------------------------------------------------- /src/app/model/request/worker-profile-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/request/worker-profile-request.ts -------------------------------------------------------------------------------- /src/app/model/reservation-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/reservation-status.ts -------------------------------------------------------------------------------- /src/app/model/reservation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/reservation.spec.ts -------------------------------------------------------------------------------- /src/app/model/reservation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/reservation.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-credential.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-credential.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-credential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-credential.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-customer-favourite-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-customer-favourite-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-customer-favourite-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-customer-favourite-response.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-customer-profile-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-customer-profile-response.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-customer-reservation-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-customer-reservation-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-customer-reservation-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-customer-reservation-response.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-d-exception-msg.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-d-exception-msg.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-d-exception-msg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-d-exception-msg.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-login-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-login-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-login-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-login-response.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-register-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-register-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-register-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-register-response.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-reservation-container-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-reservation-container-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-reservation-container-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-reservation-container-response.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-reservation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-reservation.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-reservation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-reservation.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-saloon-list.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-saloon-list.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-saloon-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-saloon-list.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-saloon.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-saloon.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-saloon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-saloon.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-service-details-reservation-container-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-service-details-reservation-container-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-service-details-reservation-container-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-service-details-reservation-container-response.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-tag.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-tag.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-tag.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-task-list.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-task-list.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/api/api-payload-task-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/api/api-payload-task-list.ts -------------------------------------------------------------------------------- /src/app/model/response/container/customer-container-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/container/customer-container-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/container/customer-container-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/container/customer-container-response.ts -------------------------------------------------------------------------------- /src/app/model/response/customer-favourite-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/customer-favourite-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/customer-favourite-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/customer-favourite-response.ts -------------------------------------------------------------------------------- /src/app/model/response/customer-profile-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/customer-profile-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/customer-profile-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/customer-profile-response.ts -------------------------------------------------------------------------------- /src/app/model/response/customer-reservation-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/customer-reservation-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/customer-reservation-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/customer-reservation-response.ts -------------------------------------------------------------------------------- /src/app/model/response/login-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/login-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/login-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/login-response.ts -------------------------------------------------------------------------------- /src/app/model/response/manager-profile-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/manager-profile-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/manager-profile-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/manager-profile-response.ts -------------------------------------------------------------------------------- /src/app/model/response/manager-reservation-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/manager-reservation-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/manager-reservation-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/manager-reservation-response.ts -------------------------------------------------------------------------------- /src/app/model/response/manager-worker-assignment-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/manager-worker-assignment-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/manager-worker-assignment-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/manager-worker-assignment-response.ts -------------------------------------------------------------------------------- /src/app/model/response/manager-worker-info-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/manager-worker-info-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/manager-worker-info-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/manager-worker-info-response.ts -------------------------------------------------------------------------------- /src/app/model/response/page/page-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/page/page-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/page/page-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/page/page-response.ts -------------------------------------------------------------------------------- /src/app/model/response/page/pageable-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/page/pageable-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/page/pageable-response.ts: -------------------------------------------------------------------------------- 1 | export class PageableResponse { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/model/response/page/sort-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/page/sort-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/page/sort-response.ts: -------------------------------------------------------------------------------- 1 | export class SortResponse { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/model/response/register-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/register-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/register-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/register-response.ts -------------------------------------------------------------------------------- /src/app/model/response/reservation-begin-end-task-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/reservation-begin-end-task-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/reservation-begin-end-task-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/reservation-begin-end-task-response.ts -------------------------------------------------------------------------------- /src/app/model/response/reservation-container-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/reservation-container-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/reservation-container-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/reservation-container-response.ts -------------------------------------------------------------------------------- /src/app/model/response/reservation-sub-worker-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/reservation-sub-worker-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/reservation-sub-worker-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/reservation-sub-worker-response.ts -------------------------------------------------------------------------------- /src/app/model/response/service-details-reservation-container-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/service-details-reservation-container-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/service-details-reservation-container-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/service-details-reservation-container-response.ts -------------------------------------------------------------------------------- /src/app/model/response/worker-profile-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/worker-profile-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/worker-profile-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/response/worker-profile-response.ts -------------------------------------------------------------------------------- /src/app/model/saloon-image.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/saloon-image.spec.ts -------------------------------------------------------------------------------- /src/app/model/saloon-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/saloon-image.ts -------------------------------------------------------------------------------- /src/app/model/saloon-tag.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/saloon-tag.spec.ts -------------------------------------------------------------------------------- /src/app/model/saloon-tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/saloon-tag.ts -------------------------------------------------------------------------------- /src/app/model/saloon.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/saloon.spec.ts -------------------------------------------------------------------------------- /src/app/model/saloon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/saloon.ts -------------------------------------------------------------------------------- /src/app/model/service-detail.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/service-detail.spec.ts -------------------------------------------------------------------------------- /src/app/model/service-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/service-detail.ts -------------------------------------------------------------------------------- /src/app/model/tag.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/tag.spec.ts -------------------------------------------------------------------------------- /src/app/model/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/tag.ts -------------------------------------------------------------------------------- /src/app/model/task.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/task.spec.ts -------------------------------------------------------------------------------- /src/app/model/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/task.ts -------------------------------------------------------------------------------- /src/app/model/toastr-msg.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/toastr-msg.spec.ts -------------------------------------------------------------------------------- /src/app/model/toastr-msg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/toastr-msg.ts -------------------------------------------------------------------------------- /src/app/model/user-image.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/user-image.spec.ts -------------------------------------------------------------------------------- /src/app/model/user-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/user-image.ts -------------------------------------------------------------------------------- /src/app/model/user-rating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/user-rating.ts -------------------------------------------------------------------------------- /src/app/model/user-role-based-authority.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/model/user-role-based-authority.ts -------------------------------------------------------------------------------- /src/app/service/authentication.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/authentication.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/authentication.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/authentication.service.ts -------------------------------------------------------------------------------- /src/app/service/calendar.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/calendar.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/calendar.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/calendar.service.ts -------------------------------------------------------------------------------- /src/app/service/category.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/category.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/category.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/category.service.ts -------------------------------------------------------------------------------- /src/app/service/credential.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/credential.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/credential.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/credential.service.ts -------------------------------------------------------------------------------- /src/app/service/customer.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/customer.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/customer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/customer.service.ts -------------------------------------------------------------------------------- /src/app/service/customer/customer-favourite.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/customer/customer-favourite.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/customer/customer-favourite.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/customer/customer-favourite.service.ts -------------------------------------------------------------------------------- /src/app/service/customer/customer-profile.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/customer/customer-profile.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/customer/customer-profile.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/customer/customer-profile.service.ts -------------------------------------------------------------------------------- /src/app/service/customer/customer-reservation-detail.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/customer/customer-reservation-detail.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/customer/customer-reservation-detail.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/customer/customer-reservation-detail.service.ts -------------------------------------------------------------------------------- /src/app/service/customer/customer-reservation.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/customer/customer-reservation.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/customer/customer-reservation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/customer/customer-reservation.service.ts -------------------------------------------------------------------------------- /src/app/service/employee.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/employee.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee.service.ts -------------------------------------------------------------------------------- /src/app/service/employee/manager/manager-category.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/manager/manager-category.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/employee/manager/manager-category.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/manager/manager-category.service.ts -------------------------------------------------------------------------------- /src/app/service/employee/manager/manager-profile.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/manager/manager-profile.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/employee/manager/manager-profile.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/manager/manager-profile.service.ts -------------------------------------------------------------------------------- /src/app/service/employee/manager/manager-reservation-detail.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/manager/manager-reservation-detail.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/employee/manager/manager-reservation-detail.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/manager/manager-reservation-detail.service.ts -------------------------------------------------------------------------------- /src/app/service/employee/manager/manager-reservation.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/manager/manager-reservation.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/employee/manager/manager-reservation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/manager/manager-reservation.service.ts -------------------------------------------------------------------------------- /src/app/service/employee/manager/manager-service-detail.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/manager/manager-service-detail.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/employee/manager/manager-service-detail.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/manager/manager-service-detail.service.ts -------------------------------------------------------------------------------- /src/app/service/employee/manager/manager-worker-assignment.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/manager/manager-worker-assignment.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/employee/manager/manager-worker-assignment.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/manager/manager-worker-assignment.service.ts -------------------------------------------------------------------------------- /src/app/service/employee/manager/manager-worker-service.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/manager/manager-worker-service.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/employee/manager/manager-worker-service.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/manager/manager-worker-service.service.ts -------------------------------------------------------------------------------- /src/app/service/employee/worker/worker-profile.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/worker/worker-profile.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/employee/worker/worker-profile.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/worker/worker-profile.service.ts -------------------------------------------------------------------------------- /src/app/service/employee/worker/worker-reservation-detail.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/worker/worker-reservation-detail.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/employee/worker/worker-reservation-detail.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/worker/worker-reservation-detail.service.ts -------------------------------------------------------------------------------- /src/app/service/employee/worker/worker-reservation-task.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/worker/worker-reservation-task.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/employee/worker/worker-reservation-task.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/worker/worker-reservation-task.service.ts -------------------------------------------------------------------------------- /src/app/service/employee/worker/worker-reservation.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/worker/worker-reservation.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/employee/worker/worker-reservation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/employee/worker/worker-reservation.service.ts -------------------------------------------------------------------------------- /src/app/service/error-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/error-handler.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/error-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/error-handler.service.ts -------------------------------------------------------------------------------- /src/app/service/health-liveness.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/health-liveness.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/health-liveness.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/health-liveness.service.ts -------------------------------------------------------------------------------- /src/app/service/location.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/location.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/location.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/location.service.ts -------------------------------------------------------------------------------- /src/app/service/notification.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/notification.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/notification.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/notification.service.ts -------------------------------------------------------------------------------- /src/app/service/ordered-detail.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/ordered-detail.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/ordered-detail.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/ordered-detail.service.ts -------------------------------------------------------------------------------- /src/app/service/registration.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/registration.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/registration.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/registration.service.ts -------------------------------------------------------------------------------- /src/app/service/reservation.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/reservation.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/reservation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/reservation.service.ts -------------------------------------------------------------------------------- /src/app/service/saloon.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/saloon.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/saloon.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/saloon.service.ts -------------------------------------------------------------------------------- /src/app/service/service-detail.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/service-detail.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/service-detail.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/service-detail.service.ts -------------------------------------------------------------------------------- /src/app/service/tag.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/tag.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/tag.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/tag.service.ts -------------------------------------------------------------------------------- /src/app/service/task.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/task.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/task.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/app/service/task.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/barbershop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/assets/barbershop.png -------------------------------------------------------------------------------- /src/assets/home/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/assets/home/css/styles.css -------------------------------------------------------------------------------- /src/assets/home/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/assets/home/images/1.jpg -------------------------------------------------------------------------------- /src/assets/home/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/assets/home/images/2.jpg -------------------------------------------------------------------------------- /src/assets/home/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/assets/home/images/3.jpg -------------------------------------------------------------------------------- /src/assets/home/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/assets/home/images/4.jpg -------------------------------------------------------------------------------- /src/assets/home/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/assets/home/js/scripts.js -------------------------------------------------------------------------------- /src/environments/environment.preprod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/environments/environment.preprod.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.staging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/environments/environment.staging.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------