NO DATA!
8 |No Locations were found.
9 |├── src ├── assets │ ├── .gitkeep │ ├── barbershop.png │ └── home │ │ ├── images │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ └── 4.jpg │ │ └── js │ │ └── scripts.js ├── app │ ├── app.component.scss │ ├── component │ │ ├── home │ │ │ ├── home.component.scss │ │ │ └── home.component.spec.ts │ │ ├── logout │ │ │ ├── logout.component.scss │ │ │ ├── logout.component.html │ │ │ ├── logout.component.spec.ts │ │ │ └── logout.component.ts │ │ ├── navbar │ │ │ ├── navbar.component.scss │ │ │ └── navbar.component.spec.ts │ │ ├── workspace │ │ │ ├── customer │ │ │ │ ├── index │ │ │ │ │ ├── index.component.scss │ │ │ │ │ ├── index.component.html │ │ │ │ │ ├── index.component.ts │ │ │ │ │ └── index.component.spec.ts │ │ │ │ ├── reservation │ │ │ │ │ ├── reservation.component.scss │ │ │ │ │ ├── reservation-details │ │ │ │ │ │ ├── reservation-details.component.scss │ │ │ │ │ │ └── reservation-details.component.spec.ts │ │ │ │ │ ├── assigned-worker │ │ │ │ │ │ ├── assigned-worker.component.ts │ │ │ │ │ │ ├── assigned-worker.component.spec.ts │ │ │ │ │ │ └── assigned-worker.component.html │ │ │ │ │ └── reservation.component.spec.ts │ │ │ │ ├── rating │ │ │ │ │ ├── rating.component.spec.ts │ │ │ │ │ └── rating.component.ts │ │ │ │ ├── profile │ │ │ │ │ └── profile.component.spec.ts │ │ │ │ └── favourite │ │ │ │ │ └── favourite.component.spec.ts │ │ │ ├── manager │ │ │ │ ├── index │ │ │ │ │ ├── index.component.scss │ │ │ │ │ ├── index.component.html │ │ │ │ │ ├── index.component.ts │ │ │ │ │ └── index.component.spec.ts │ │ │ │ ├── reservation │ │ │ │ │ ├── reservation.component.scss │ │ │ │ │ ├── reservation-calendar │ │ │ │ │ │ ├── reservation-calendar.component.scss │ │ │ │ │ │ ├── reservation-calendar.component.html │ │ │ │ │ │ └── reservation-calendar.component.spec.ts │ │ │ │ │ ├── reservation-detail │ │ │ │ │ │ ├── reservation-detail.component.scss │ │ │ │ │ │ └── reservation-detail.component.spec.ts │ │ │ │ │ └── reservation.component.spec.ts │ │ │ │ ├── worker │ │ │ │ │ ├── worker.component.spec.ts │ │ │ │ │ └── worker-assignment │ │ │ │ │ │ ├── worker-assignment.component.spec.ts │ │ │ │ │ │ └── worker-assignment.component.scss │ │ │ │ ├── profile │ │ │ │ │ └── profile.component.spec.ts │ │ │ │ ├── category │ │ │ │ │ ├── category.component.spec.ts │ │ │ │ │ └── category.component.scss │ │ │ │ └── service-detail │ │ │ │ │ ├── service-detail.component.spec.ts │ │ │ │ │ └── service-detail.component.scss │ │ │ ├── owner │ │ │ │ ├── index │ │ │ │ │ ├── index.component.scss │ │ │ │ │ ├── index.component.html │ │ │ │ │ ├── index.component.ts │ │ │ │ │ └── index.component.spec.ts │ │ │ │ └── profile │ │ │ │ │ ├── profile.component.scss │ │ │ │ │ ├── profile.component.html │ │ │ │ │ ├── profile.component.ts │ │ │ │ │ └── profile.component.spec.ts │ │ │ └── worker │ │ │ │ ├── index │ │ │ │ ├── index.component.scss │ │ │ │ ├── index.component.html │ │ │ │ ├── index.component.ts │ │ │ │ └── index.component.spec.ts │ │ │ │ ├── reservation │ │ │ │ ├── reservation-calendar │ │ │ │ │ ├── reservation-calendar.component.scss │ │ │ │ │ ├── reservation-calendar.component.html │ │ │ │ │ └── reservation-calendar.component.spec.ts │ │ │ │ ├── reservation.component.scss │ │ │ │ ├── reservation-details │ │ │ │ │ ├── reservation-details.component.scss │ │ │ │ │ └── reservation-details.component.spec.ts │ │ │ │ └── reservation.component.spec.ts │ │ │ │ └── profile │ │ │ │ └── profile.component.spec.ts │ │ ├── saloon │ │ │ ├── saloon-calendar │ │ │ │ └── saloon-calendar │ │ │ │ │ ├── saloon-calendar.component.scss │ │ │ │ │ └── saloon-calendar.component.spec.ts │ │ │ ├── saloon.component.spec.ts │ │ │ ├── saloon-detail │ │ │ │ └── saloon-detail.component.spec.ts │ │ │ └── saloon.component.scss │ │ ├── about │ │ │ ├── about.component.ts │ │ │ ├── about.component.spec.ts │ │ │ └── about.component.scss │ │ ├── contact │ │ │ ├── contact.component.ts │ │ │ └── contact.component.spec.ts │ │ ├── error │ │ │ └── error404 │ │ │ │ ├── error404.component.ts │ │ │ │ ├── error404.component.scss │ │ │ │ ├── error404.component.spec.ts │ │ │ │ └── error404.component.html │ │ ├── authentication │ │ │ ├── authentication.component.scss │ │ │ └── authentication.component.spec.ts │ │ ├── registration │ │ │ ├── registration.component.scss │ │ │ └── registration.component.spec.ts │ │ └── location │ │ │ ├── location.component.spec.ts │ │ │ ├── location.component.scss │ │ │ ├── location.component.html │ │ │ └── location.component.ts │ ├── model │ │ ├── response │ │ │ ├── page │ │ │ │ ├── sort-response.ts │ │ │ │ ├── pageable-response.ts │ │ │ │ ├── page-response.spec.ts │ │ │ │ ├── sort-response.spec.ts │ │ │ │ ├── pageable-response.spec.ts │ │ │ │ └── page-response.ts │ │ │ ├── login-response.spec.ts │ │ │ ├── register-response.ts │ │ │ ├── api │ │ │ │ ├── api-payload-tag.spec.ts │ │ │ │ ├── api-payload-saloon.spec.ts │ │ │ │ ├── api-payload-task-list.spec.ts │ │ │ │ ├── api-payload-credential.spec.ts │ │ │ │ ├── api-payload-reservation.spec.ts │ │ │ │ ├── api-payload-saloon-list.spec.ts │ │ │ │ ├── api-payload-d-exception-msg.spec.ts │ │ │ │ ├── api-payload-login-response.spec.ts │ │ │ │ ├── api-payload-register-response.spec.ts │ │ │ │ ├── api-payload-customer-favourite-response.spec.ts │ │ │ │ ├── api-payload-customer-reservation-response.spec.ts │ │ │ │ ├── api-payload-reservation-container-response.spec.ts │ │ │ │ ├── api-payload-tag.ts │ │ │ │ ├── api-payload-task-list.ts │ │ │ │ ├── api-payload-saloon-list.ts │ │ │ │ ├── api-payload-credential.ts │ │ │ │ ├── api-payload-saloon.ts │ │ │ │ ├── api-payload-login-response.ts │ │ │ │ ├── api-payload-register-response.ts │ │ │ │ ├── api-payload-reservation.ts │ │ │ │ ├── api-payload-service-details-reservation-container-response.spec.ts │ │ │ │ ├── api-payload-customer-profile-response.ts │ │ │ │ ├── api-payload-customer-favourite-response.ts │ │ │ │ ├── api-payload-customer-reservation-response.ts │ │ │ │ ├── api-payload-reservation-container-response.ts │ │ │ │ ├── api-payload-service-details-reservation-container-response.ts │ │ │ │ └── api-payload-d-exception-msg.ts │ │ │ ├── login-response.ts │ │ │ ├── register-response.spec.ts │ │ │ ├── worker-profile-response.spec.ts │ │ │ ├── manager-profile-response.spec.ts │ │ │ ├── customer-profile-response.spec.ts │ │ │ ├── customer-favourite-response.spec.ts │ │ │ ├── manager-reservation-response.spec.ts │ │ │ ├── manager-worker-info-response.spec.ts │ │ │ ├── container │ │ │ │ ├── customer-container-response.spec.ts │ │ │ │ └── customer-container-response.ts │ │ │ ├── customer-reservation-response.spec.ts │ │ │ ├── reservation-begin-end-task-response.ts │ │ │ ├── reservation-container-response.spec.ts │ │ │ ├── reservation-sub-worker-response.spec.ts │ │ │ ├── manager-worker-assignment-response.spec.ts │ │ │ ├── reservation-begin-end-task-response.spec.ts │ │ │ ├── service-details-reservation-container-response.spec.ts │ │ │ ├── manager-worker-assignment-response.ts │ │ │ ├── manager-worker-info-response.ts │ │ │ ├── reservation-sub-worker-response.ts │ │ │ ├── manager-reservation-response.ts │ │ │ ├── worker-profile-response.ts │ │ │ ├── service-details-reservation-container-response.ts │ │ │ ├── customer-favourite-response.ts │ │ │ ├── customer-reservation-response.ts │ │ │ ├── reservation-container-response.ts │ │ │ ├── manager-profile-response.ts │ │ │ └── customer-profile-response.ts │ │ ├── exception-msg.ts │ │ ├── tag.spec.ts │ │ ├── task.spec.ts │ │ ├── rating.spec.ts │ │ ├── saloon.spec.ts │ │ ├── category.spec.ts │ │ ├── customer.spec.ts │ │ ├── employee.spec.ts │ │ ├── location.spec.ts │ │ ├── favourite.spec.ts │ │ ├── saloon-tag.spec.ts │ │ ├── toastr-msg.spec.ts │ │ ├── user-image.spec.ts │ │ ├── credential.spec.ts │ │ ├── reservation.spec.ts │ │ ├── saloon-image.spec.ts │ │ ├── exception-msg.spec.ts │ │ ├── ordered-detail.spec.ts │ │ ├── service-detail.spec.ts │ │ ├── toastr-msg.ts │ │ ├── user-rating.ts │ │ ├── date-backend-format.ts │ │ ├── request │ │ │ ├── login-request.spec.ts │ │ │ ├── login-request.ts │ │ │ ├── category-request.spec.ts │ │ │ ├── register-request.spec.ts │ │ │ ├── client-page-request.spec.ts │ │ │ ├── reservation-request.spec.ts │ │ │ ├── ordered-detail-request.spec.ts │ │ │ ├── service-detail-request.spec.ts │ │ │ ├── task-begin-end-request.spec.ts │ │ │ ├── worker-profile-request.spec.ts │ │ │ ├── manager-profile-request.spec.ts │ │ │ ├── reservation-detail-request.spec.ts │ │ │ ├── reservation-detail-request.ts │ │ │ ├── customer-profile-info-request.spec.ts │ │ │ ├── task-update-description-request.spec.ts │ │ │ ├── reservation-assign-worker-request.spec.ts │ │ │ ├── ordered-detail-request.ts │ │ │ ├── category-request.ts │ │ │ ├── task-begin-end-request.ts │ │ │ ├── reservation-assign-worker-request.ts │ │ │ ├── client-page-request.ts │ │ │ ├── task-update-description-request.ts │ │ │ ├── service-detail-request.ts │ │ │ ├── reservation-request.ts │ │ │ ├── register-request.ts │ │ │ ├── manager-profile-request.ts │ │ │ ├── worker-profile-request.ts │ │ │ └── customer-profile-info-request.ts │ │ ├── ordered-detail-id.spec.ts │ │ ├── ordered-detail-id.ts │ │ ├── user-role-based-authority.ts │ │ ├── tag.ts │ │ ├── location.ts │ │ ├── reservation-status.ts │ │ ├── user-image.ts │ │ ├── category.ts │ │ ├── saloon-image.ts │ │ ├── saloon-tag.ts │ │ ├── favourite.ts │ │ ├── service-detail.ts │ │ ├── ordered-detail.ts │ │ ├── credential.ts │ │ ├── rating.ts │ │ ├── saloon.ts │ │ ├── reservation.ts │ │ ├── task.ts │ │ ├── employee.ts │ │ └── customer.ts │ ├── guard │ │ ├── owner.guard.spec.ts │ │ ├── worker.guard.spec.ts │ │ ├── manager.guard.spec.ts │ │ ├── customer.guard.spec.ts │ │ ├── registration.guard.spec.ts │ │ ├── saloon-detail.guard.spec.ts │ │ ├── authentication.guard.spec.ts │ │ ├── registration.guard.ts │ │ ├── authentication.guard.ts │ │ ├── saloon-detail.guard.ts │ │ ├── owner.guard.ts │ │ ├── customer.guard.ts │ │ ├── manager.guard.ts │ │ └── worker.guard.ts │ ├── service │ │ ├── tag.service.spec.ts │ │ ├── task.service.spec.ts │ │ ├── saloon.service.spec.ts │ │ ├── calendar.service.spec.ts │ │ ├── category.service.spec.ts │ │ ├── customer.service.spec.ts │ │ ├── employee.service.spec.ts │ │ ├── location.service.spec.ts │ │ ├── credential.service.spec.ts │ │ ├── reservation.service.spec.ts │ │ ├── notification.service.spec.ts │ │ ├── registration.service.spec.ts │ │ ├── error-handler.service.spec.ts │ │ ├── ordered-detail.service.spec.ts │ │ ├── service-detail.service.spec.ts │ │ ├── authentication.service.spec.ts │ │ ├── health-liveness.service.spec.ts │ │ ├── employee │ │ │ ├── worker │ │ │ │ ├── worker-profile.service.spec.ts │ │ │ │ ├── worker-reservation.service.spec.ts │ │ │ │ ├── worker-reservation-task.service.spec.ts │ │ │ │ ├── worker-reservation-detail.service.spec.ts │ │ │ │ └── worker-reservation-detail.service.ts │ │ │ └── manager │ │ │ │ ├── manager-profile.service.spec.ts │ │ │ │ ├── manager-category.service.spec.ts │ │ │ │ ├── manager-reservation.service.spec.ts │ │ │ │ ├── manager-service-detail.service.spec.ts │ │ │ │ ├── manager-worker-service.service.spec.ts │ │ │ │ ├── manager-worker-assignment.service.spec.ts │ │ │ │ └── manager-reservation-detail.service.spec.ts │ │ ├── customer │ │ │ ├── customer-profile.service.spec.ts │ │ │ ├── customer-favourite.service.spec.ts │ │ │ ├── customer-reservation.service.spec.ts │ │ │ └── customer-reservation-detail.service.spec.ts │ │ ├── category.service.ts │ │ ├── tag.service.ts │ │ ├── task.service.ts │ │ ├── notification.service.ts │ │ ├── error-handler.service.ts │ │ ├── authentication.service.ts │ │ ├── registration.service.ts │ │ ├── health-liveness.service.ts │ │ ├── location.service.ts │ │ ├── credential.service.ts │ │ ├── service-detail.service.ts │ │ └── ordered-detail.service.ts │ ├── app.component.spec.ts │ ├── app.component.ts │ └── app.component.html ├── favicon.ico ├── environments │ ├── environment.preprod.ts │ ├── environment.prod.ts │ ├── environment.staging.ts │ └── environment.ts ├── main.ts ├── test.ts ├── styles.scss └── index.html ├── .env ├── .dockerignore ├── Dockerfile ├── .editorconfig ├── azure-pipelines.yml ├── tsconfig.app.json ├── tsconfig.spec.json ├── compose.yml ├── .github └── workflows │ ├── pipeline-dev-pr.yml │ ├── pipeline-prod-pr.yml │ ├── pipeline-preprod-pr.yml │ ├── pipeline-staging-pr.yml │ ├── pipeline-dev-push.yml │ ├── pipeline-preprod-push.yml │ ├── pipeline-staging-push.yml │ └── pipeline-prod-push.yml ├── .browserslistrc ├── nginx.conf ├── .gitignore ├── tsconfig.json ├── README.md ├── k8s ├── prod │ └── app-deployment-service.yml ├── preprod │ └── app-deployment-service.yml ├── staging │ └── app-deployment-service.yml └── dev │ └── app-deployment-service.yml ├── package.json └── karma.conf.js /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/logout/logout.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/navbar/navbar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | 2 | PROFILE=staging 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/app/component/workspace/customer/index/index.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/workspace/manager/index/index.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/workspace/owner/index/index.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/workspace/worker/index/index.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/workspace/owner/profile/profile.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/logout/logout.component.html: -------------------------------------------------------------------------------- 1 |
logout works!
2 | -------------------------------------------------------------------------------- /src/app/component/workspace/manager/reservation/reservation.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/model/response/page/sort-response.ts: -------------------------------------------------------------------------------- 1 | export class SortResponse { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/component/saloon/saloon-calendar/saloon-calendar/saloon-calendar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/workspace/owner/index/index.component.html: -------------------------------------------------------------------------------- 1 |index works!
2 | -------------------------------------------------------------------------------- /src/app/component/workspace/owner/profile/profile.component.html: -------------------------------------------------------------------------------- 1 |profile works!
2 | -------------------------------------------------------------------------------- /src/app/model/response/page/pageable-response.ts: -------------------------------------------------------------------------------- 1 | export class PageableResponse { 2 | } 3 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/atic-frontend-app/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/app/component/workspace/worker/reservation/reservation-calendar/reservation-calendar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/workspace/manager/reservation/reservation-calendar/reservation-calendar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/workspace/manager/index/index.component.html: -------------------------------------------------------------------------------- 1 |No Locations were found.
9 |Active | Male | Born 23.05.1992
14 |Activity Level: 87%
16 |1256
28 |8562
32 |189
36 |Lorem Ipsum is simply dummy text of the printing and typesetting industry.
40 |