├── .gitignore ├── 1-Project ├── .firebaserc ├── .gitignore ├── LICENSE ├── README.md ├── backend-firestore │ ├── .gitignore │ ├── .prettierrc │ ├── .runtimeconfig.json │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── app-engine.development.yaml │ ├── app-engine.production.yaml │ ├── config │ │ ├── development.js │ │ ├── index.js │ │ ├── localhost.js │ │ ├── production.js │ │ └── test.js │ ├── index.js │ ├── package.json │ ├── server.js │ ├── service-accounts │ │ └── .gitkeep │ └── src │ │ ├── __fixtures__ │ │ ├── bookingFixture.js │ │ ├── genericFixture.js │ │ ├── index.js │ │ ├── petFixture.js │ │ └── userFixture.js │ │ ├── __mocks__ │ │ ├── firebase-admin.js │ │ └── nodemailer.js │ │ ├── api │ │ ├── auditLog │ │ │ ├── mutations │ │ │ │ └── index.js │ │ │ ├── queries │ │ │ │ ├── auditLogList.js │ │ │ │ └── index.js │ │ │ └── types │ │ │ │ ├── auditLog.js │ │ │ │ ├── auditLogListFilterInput.js │ │ │ │ ├── auditLogListOrderByEnum.js │ │ │ │ ├── auditLogPage.js │ │ │ │ └── index.js │ │ ├── auth │ │ │ ├── mutations │ │ │ │ ├── authSendEmailAddressVerificationEmail.js │ │ │ │ ├── authSendPasswordResetEmail.js │ │ │ │ ├── authUpdateProfile.js │ │ │ │ └── index.js │ │ │ ├── queries │ │ │ │ ├── authIsEmailConfigured.js │ │ │ │ ├── authMe.js │ │ │ │ ├── authStorageToken.js │ │ │ │ └── index.js │ │ │ └── types │ │ │ │ ├── index.js │ │ │ │ ├── user.js │ │ │ │ ├── userProfileInput.js │ │ │ │ ├── userWithRoles.js │ │ │ │ ├── userWithRolesOrderByEnum.js │ │ │ │ └── userWithRolesPage.js │ │ ├── booking │ │ │ ├── mutations │ │ │ │ ├── bookingCreate.js │ │ │ │ ├── bookingDestroy.js │ │ │ │ ├── bookingImport.js │ │ │ │ ├── bookingUpdate.js │ │ │ │ └── index.js │ │ │ ├── queries │ │ │ │ ├── bookingAutocomplete.js │ │ │ │ ├── bookingFind.js │ │ │ │ ├── bookingList.js │ │ │ │ └── index.js │ │ │ └── types │ │ │ │ ├── booking.js │ │ │ │ ├── bookingEnums.js │ │ │ │ ├── bookingFilterInput.js │ │ │ │ ├── bookingInput.js │ │ │ │ ├── bookingOrderByEnum.js │ │ │ │ ├── bookingPage.js │ │ │ │ └── index.js │ │ ├── iam │ │ │ ├── mutations │ │ │ │ ├── iamChangeStatus.js │ │ │ │ ├── iamCreate.js │ │ │ │ ├── iamEdit.js │ │ │ │ ├── iamImport.js │ │ │ │ ├── iamRemove.js │ │ │ │ └── index.js │ │ │ ├── queries │ │ │ │ ├── iamFind.js │ │ │ │ ├── iamListRoles.js │ │ │ │ ├── iamListUsers.js │ │ │ │ ├── iamUserAutocomplete.js │ │ │ │ └── index.js │ │ │ └── types │ │ │ │ ├── iamCreateInput.js │ │ │ │ ├── iamEditInput.js │ │ │ │ ├── iamImportInput.js │ │ │ │ ├── iamListRolesFilterInput.js │ │ │ │ ├── iamListUsersFilterInput.js │ │ │ │ ├── index.js │ │ │ │ ├── roleWithUsers.js │ │ │ │ └── roleWithUsersOrderByEnum.js │ │ ├── index.js │ │ ├── pet │ │ │ ├── mutations │ │ │ │ ├── index.js │ │ │ │ ├── petCreate.js │ │ │ │ ├── petDestroy.js │ │ │ │ ├── petImport.js │ │ │ │ └── petUpdate.js │ │ │ ├── queries │ │ │ │ ├── index.js │ │ │ │ ├── petAutocomplete.js │ │ │ │ ├── petFind.js │ │ │ │ └── petList.js │ │ │ └── types │ │ │ │ ├── index.js │ │ │ │ ├── pet.js │ │ │ │ ├── petEnums.js │ │ │ │ ├── petFilterInput.js │ │ │ │ ├── petInput.js │ │ │ │ ├── petOrderByEnum.js │ │ │ │ └── petPage.js │ │ ├── resolvers.js │ │ ├── schema.js │ │ ├── settings │ │ │ ├── mutations │ │ │ │ ├── index.js │ │ │ │ └── settingsSave.js │ │ │ ├── queries │ │ │ │ ├── index.js │ │ │ │ └── settingsFind.js │ │ │ └── types │ │ │ │ ├── index.js │ │ │ │ ├── settings.js │ │ │ │ └── settingsInput.js │ │ └── shared │ │ │ ├── types │ │ │ ├── autocompleteOption.js │ │ │ ├── dateTime.js │ │ │ ├── file.js │ │ │ ├── fileInput.js │ │ │ ├── index.js │ │ │ ├── json.js │ │ │ └── time.js │ │ │ └── utils │ │ │ ├── graphqlSelectRequestedAttributes.js │ │ │ ├── mergeGraphqlResolvers.js │ │ │ └── testRequest.js │ │ ├── auth │ │ ├── authMiddleware.js │ │ └── authService.js │ │ ├── database │ │ ├── database.js │ │ ├── databaseInit.js │ │ ├── models │ │ │ ├── abstractEntityModel.js │ │ │ ├── booking.js │ │ │ ├── pet.js │ │ │ ├── settings.js │ │ │ ├── types │ │ │ │ ├── boolean.js │ │ │ │ ├── date.js │ │ │ │ ├── dateTime.js │ │ │ │ ├── enumerator.js │ │ │ │ ├── files.js │ │ │ │ ├── index.js │ │ │ │ ├── number.js │ │ │ │ ├── relationToMany.js │ │ │ │ ├── relationToOne.js │ │ │ │ ├── string.js │ │ │ │ └── stringArray.js │ │ │ └── user.js │ │ ├── repositories │ │ │ ├── abstractEntityRepository.js │ │ │ ├── abstractRepository.js │ │ │ ├── auditLogRepository.js │ │ │ ├── bookingRepository.js │ │ │ ├── petRepository.js │ │ │ ├── settingsRepository.js │ │ │ ├── userRepository.js │ │ │ └── userRoleRepository.js │ │ └── utils │ │ │ └── firebaseQuery.js │ │ ├── emails │ │ ├── emailAddressVerificationEmail.js │ │ ├── invitationEmail.js │ │ └── passwordResetEmail.js │ │ ├── errors │ │ ├── forbiddenError.js │ │ └── validationError.js │ │ ├── external │ │ ├── firebase-admin.js │ │ └── nodemailer.js │ │ ├── i18n │ │ ├── en.js │ │ ├── index.js │ │ └── pt-BR.js │ │ ├── security │ │ ├── permissions.js │ │ └── roles.js │ │ ├── services │ │ ├── auth │ │ │ ├── authProfileEditor.js │ │ │ └── authUserWriter.js │ │ ├── bookingService.js │ │ ├── iam │ │ │ ├── iamCreator.js │ │ │ ├── iamEditor.js │ │ │ ├── iamImporter.js │ │ │ ├── iamRemover.js │ │ │ ├── iamStatusChanger.js │ │ │ └── permissionChecker.js │ │ ├── petService.js │ │ ├── settingsService.js │ │ └── shared │ │ │ └── email │ │ │ └── emailSender.js │ │ └── storage │ │ └── storageTokenGenerator.js ├── backend-mongodb │ ├── .gitignore │ ├── .prettierrc │ ├── .runtimeconfig.json │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── app-engine.development.yaml │ ├── app-engine.production.yaml │ ├── config │ │ ├── development.js │ │ ├── index.js │ │ ├── localhost.js │ │ ├── production.js │ │ └── test.js │ ├── index.js │ ├── package.json │ ├── server.js │ ├── service-accounts │ │ └── .gitkeep │ └── src │ │ ├── __fixtures__ │ │ ├── bookingFixture.js │ │ ├── genericFixture.js │ │ ├── index.js │ │ ├── petFixture.js │ │ └── userFixture.js │ │ ├── __mocks__ │ │ ├── firebase-admin.js │ │ └── nodemailer.js │ │ ├── api │ │ ├── auditLog │ │ │ ├── mutations │ │ │ │ └── index.js │ │ │ ├── queries │ │ │ │ ├── auditLogList.js │ │ │ │ └── index.js │ │ │ └── types │ │ │ │ ├── auditLog.js │ │ │ │ ├── auditLogListFilterInput.js │ │ │ │ ├── auditLogListOrderByEnum.js │ │ │ │ ├── auditLogPage.js │ │ │ │ └── index.js │ │ ├── auth │ │ │ ├── mutations │ │ │ │ ├── authSendEmailAddressVerificationEmail.js │ │ │ │ ├── authSendPasswordResetEmail.js │ │ │ │ ├── authUpdateProfile.js │ │ │ │ └── index.js │ │ │ ├── queries │ │ │ │ ├── authIsEmailConfigured.js │ │ │ │ ├── authMe.js │ │ │ │ ├── authStorageToken.js │ │ │ │ └── index.js │ │ │ └── types │ │ │ │ ├── index.js │ │ │ │ ├── user.js │ │ │ │ ├── userProfileInput.js │ │ │ │ ├── userWithRoles.js │ │ │ │ ├── userWithRolesOrderByEnum.js │ │ │ │ └── userWithRolesPage.js │ │ ├── booking │ │ │ ├── mutations │ │ │ │ ├── bookingCreate.js │ │ │ │ ├── bookingDestroy.js │ │ │ │ ├── bookingImport.js │ │ │ │ ├── bookingUpdate.js │ │ │ │ └── index.js │ │ │ ├── queries │ │ │ │ ├── bookingAutocomplete.js │ │ │ │ ├── bookingFind.js │ │ │ │ ├── bookingList.js │ │ │ │ └── index.js │ │ │ └── types │ │ │ │ ├── booking.js │ │ │ │ ├── bookingEnums.js │ │ │ │ ├── bookingFilterInput.js │ │ │ │ ├── bookingInput.js │ │ │ │ ├── bookingOrderByEnum.js │ │ │ │ ├── bookingPage.js │ │ │ │ └── index.js │ │ ├── iam │ │ │ ├── mutations │ │ │ │ ├── iamChangeStatus.js │ │ │ │ ├── iamCreate.js │ │ │ │ ├── iamEdit.js │ │ │ │ ├── iamImport.js │ │ │ │ ├── iamRemove.js │ │ │ │ └── index.js │ │ │ ├── queries │ │ │ │ ├── iamFind.js │ │ │ │ ├── iamListRoles.js │ │ │ │ ├── iamListUsers.js │ │ │ │ ├── iamUserAutocomplete.js │ │ │ │ └── index.js │ │ │ └── types │ │ │ │ ├── iamCreateInput.js │ │ │ │ ├── iamEditInput.js │ │ │ │ ├── iamImportInput.js │ │ │ │ ├── iamListRolesFilterInput.js │ │ │ │ ├── iamListUsersFilterInput.js │ │ │ │ ├── index.js │ │ │ │ ├── roleWithUsers.js │ │ │ │ └── roleWithUsersOrderByEnum.js │ │ ├── index.js │ │ ├── pet │ │ │ ├── mutations │ │ │ │ ├── index.js │ │ │ │ ├── petCreate.js │ │ │ │ ├── petDestroy.js │ │ │ │ ├── petImport.js │ │ │ │ └── petUpdate.js │ │ │ ├── queries │ │ │ │ ├── index.js │ │ │ │ ├── petAutocomplete.js │ │ │ │ ├── petFind.js │ │ │ │ └── petList.js │ │ │ └── types │ │ │ │ ├── index.js │ │ │ │ ├── pet.js │ │ │ │ ├── petEnums.js │ │ │ │ ├── petFilterInput.js │ │ │ │ ├── petInput.js │ │ │ │ ├── petOrderByEnum.js │ │ │ │ └── petPage.js │ │ ├── resolvers.js │ │ ├── schema.js │ │ ├── settings │ │ │ ├── mutations │ │ │ │ ├── index.js │ │ │ │ └── settingsSave.js │ │ │ ├── queries │ │ │ │ ├── index.js │ │ │ │ └── settingsFind.js │ │ │ └── types │ │ │ │ ├── index.js │ │ │ │ ├── settings.js │ │ │ │ └── settingsInput.js │ │ └── shared │ │ │ ├── types │ │ │ ├── autocompleteOption.js │ │ │ ├── dateTime.js │ │ │ ├── file.js │ │ │ ├── fileInput.js │ │ │ ├── index.js │ │ │ ├── json.js │ │ │ └── time.js │ │ │ └── utils │ │ │ ├── graphqlSelectRequestedAttributes.js │ │ │ ├── mergeGraphqlResolvers.js │ │ │ └── testRequest.js │ │ ├── auth │ │ ├── authMiddleware.js │ │ └── authService.js │ │ ├── database │ │ ├── database.js │ │ ├── databaseInit.js │ │ ├── models │ │ │ ├── auditLog.js │ │ │ ├── booking.js │ │ │ ├── file.js │ │ │ ├── pet.js │ │ │ ├── settings.js │ │ │ └── user.js │ │ ├── repositories │ │ │ ├── abstractEntityRepository.js │ │ │ ├── abstractRepository.js │ │ │ ├── auditLogRepository.js │ │ │ ├── bookingRepository.js │ │ │ ├── petRepository.js │ │ │ ├── settingsRepository.js │ │ │ ├── userRepository.js │ │ │ └── userRoleRepository.js │ │ └── utils │ │ │ └── mongooseQuery.js │ │ ├── emails │ │ ├── emailAddressVerificationEmail.js │ │ ├── invitationEmail.js │ │ └── passwordResetEmail.js │ │ ├── errors │ │ ├── forbiddenError.js │ │ └── validationError.js │ │ ├── external │ │ ├── firebase-admin.js │ │ └── nodemailer.js │ │ ├── i18n │ │ ├── en.js │ │ ├── index.js │ │ └── pt-BR.js │ │ ├── security │ │ ├── permissions.js │ │ └── roles.js │ │ ├── services │ │ ├── auth │ │ │ ├── authProfileEditor.js │ │ │ └── authUserWriter.js │ │ ├── bookingService.js │ │ ├── iam │ │ │ ├── iamCreator.js │ │ │ ├── iamEditor.js │ │ │ ├── iamImporter.js │ │ │ ├── iamRemover.js │ │ │ ├── iamStatusChanger.js │ │ │ └── permissionChecker.js │ │ ├── petService.js │ │ ├── settingsService.js │ │ └── shared │ │ │ └── email │ │ │ └── emailSender.js │ │ └── storage │ │ └── storageTokenGenerator.js ├── backend-sql │ ├── .gitignore │ ├── .prettierrc │ ├── .runtimeconfig.json │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── app-engine.development.yaml │ ├── app-engine.production.yaml │ ├── config │ │ ├── development.js │ │ ├── index.js │ │ ├── localhost.js │ │ ├── production.js │ │ └── test.js │ ├── index.js │ ├── migrations │ │ └── reset.js │ ├── package.json │ ├── server.js │ ├── service-accounts │ │ └── .gitkeep │ └── src │ │ ├── __fixtures__ │ │ ├── bookingFixture.js │ │ ├── genericFixture.js │ │ ├── index.js │ │ ├── petFixture.js │ │ └── userFixture.js │ │ ├── __mocks__ │ │ ├── firebase-admin.js │ │ └── nodemailer.js │ │ ├── api │ │ ├── auditLog │ │ │ ├── mutations │ │ │ │ └── index.js │ │ │ ├── queries │ │ │ │ ├── auditLogList.js │ │ │ │ └── index.js │ │ │ └── types │ │ │ │ ├── auditLog.js │ │ │ │ ├── auditLogListFilterInput.js │ │ │ │ ├── auditLogListOrderByEnum.js │ │ │ │ ├── auditLogPage.js │ │ │ │ └── index.js │ │ ├── auth │ │ │ ├── mutations │ │ │ │ ├── authSendEmailAddressVerificationEmail.js │ │ │ │ ├── authSendPasswordResetEmail.js │ │ │ │ ├── authUpdateProfile.js │ │ │ │ └── index.js │ │ │ ├── queries │ │ │ │ ├── authIsEmailConfigured.js │ │ │ │ ├── authMe.js │ │ │ │ ├── authStorageToken.js │ │ │ │ └── index.js │ │ │ └── types │ │ │ │ ├── index.js │ │ │ │ ├── user.js │ │ │ │ ├── userProfileInput.js │ │ │ │ ├── userWithRoles.js │ │ │ │ ├── userWithRolesOrderByEnum.js │ │ │ │ └── userWithRolesPage.js │ │ ├── booking │ │ │ ├── mutations │ │ │ │ ├── bookingCreate.js │ │ │ │ ├── bookingDestroy.js │ │ │ │ ├── bookingImport.js │ │ │ │ ├── bookingUpdate.js │ │ │ │ └── index.js │ │ │ ├── queries │ │ │ │ ├── bookingAutocomplete.js │ │ │ │ ├── bookingFind.js │ │ │ │ ├── bookingList.js │ │ │ │ └── index.js │ │ │ └── types │ │ │ │ ├── booking.js │ │ │ │ ├── bookingEnums.js │ │ │ │ ├── bookingFilterInput.js │ │ │ │ ├── bookingInput.js │ │ │ │ ├── bookingOrderByEnum.js │ │ │ │ ├── bookingPage.js │ │ │ │ └── index.js │ │ ├── iam │ │ │ ├── mutations │ │ │ │ ├── iamChangeStatus.js │ │ │ │ ├── iamCreate.js │ │ │ │ ├── iamEdit.js │ │ │ │ ├── iamImport.js │ │ │ │ ├── iamRemove.js │ │ │ │ └── index.js │ │ │ ├── queries │ │ │ │ ├── iamFind.js │ │ │ │ ├── iamListRoles.js │ │ │ │ ├── iamListUsers.js │ │ │ │ ├── iamUserAutocomplete.js │ │ │ │ └── index.js │ │ │ └── types │ │ │ │ ├── iamCreateInput.js │ │ │ │ ├── iamEditInput.js │ │ │ │ ├── iamImportInput.js │ │ │ │ ├── iamListRolesFilterInput.js │ │ │ │ ├── iamListUsersFilterInput.js │ │ │ │ ├── index.js │ │ │ │ ├── roleWithUsers.js │ │ │ │ └── roleWithUsersOrderByEnum.js │ │ ├── index.js │ │ ├── pet │ │ │ ├── mutations │ │ │ │ ├── index.js │ │ │ │ ├── petCreate.js │ │ │ │ ├── petDestroy.js │ │ │ │ ├── petImport.js │ │ │ │ └── petUpdate.js │ │ │ ├── queries │ │ │ │ ├── index.js │ │ │ │ ├── petAutocomplete.js │ │ │ │ ├── petFind.js │ │ │ │ └── petList.js │ │ │ └── types │ │ │ │ ├── index.js │ │ │ │ ├── pet.js │ │ │ │ ├── petEnums.js │ │ │ │ ├── petFilterInput.js │ │ │ │ ├── petInput.js │ │ │ │ ├── petOrderByEnum.js │ │ │ │ └── petPage.js │ │ ├── resolvers.js │ │ ├── schema.js │ │ ├── settings │ │ │ ├── mutations │ │ │ │ ├── index.js │ │ │ │ └── settingsSave.js │ │ │ ├── queries │ │ │ │ ├── index.js │ │ │ │ └── settingsFind.js │ │ │ └── types │ │ │ │ ├── index.js │ │ │ │ ├── settings.js │ │ │ │ └── settingsInput.js │ │ └── shared │ │ │ ├── types │ │ │ ├── autocompleteOption.js │ │ │ ├── dateTime.js │ │ │ ├── file.js │ │ │ ├── fileInput.js │ │ │ ├── index.js │ │ │ ├── json.js │ │ │ └── time.js │ │ │ └── utils │ │ │ ├── graphqlSelectRequestedAttributes.js │ │ │ ├── mergeGraphqlResolvers.js │ │ │ └── testRequest.js │ │ ├── auth │ │ ├── authMiddleware.js │ │ └── authService.js │ │ ├── database │ │ ├── database.js │ │ ├── databaseInit.js │ │ ├── models │ │ │ ├── auditLog.js │ │ │ ├── booking.js │ │ │ ├── file.js │ │ │ ├── index.js │ │ │ ├── pet.js │ │ │ ├── settings.js │ │ │ ├── user.js │ │ │ └── userRole.js │ │ ├── repositories │ │ │ ├── abstractEntityRepository.js │ │ │ ├── abstractRepository.js │ │ │ ├── auditLogRepository.js │ │ │ ├── bookingRepository.js │ │ │ ├── fileRepository.js │ │ │ ├── petRepository.js │ │ │ ├── settingsRepository.js │ │ │ ├── userRepository.js │ │ │ └── userRoleRepository.js │ │ └── utils │ │ │ ├── sequelizeAutocompleteFilter.js │ │ │ └── sequelizeFilter.js │ │ ├── emails │ │ ├── emailAddressVerificationEmail.js │ │ ├── invitationEmail.js │ │ └── passwordResetEmail.js │ │ ├── errors │ │ ├── forbiddenError.js │ │ └── validationError.js │ │ ├── external │ │ ├── firebase-admin.js │ │ └── nodemailer.js │ │ ├── i18n │ │ ├── en.js │ │ ├── index.js │ │ └── pt-BR.js │ │ ├── security │ │ ├── permissions.js │ │ └── roles.js │ │ ├── services │ │ ├── auth │ │ │ ├── authProfileEditor.js │ │ │ └── authUserWriter.js │ │ ├── bookingService.js │ │ ├── iam │ │ │ ├── iamCreator.js │ │ │ ├── iamEditor.js │ │ │ ├── iamImporter.js │ │ │ ├── iamRemover.js │ │ │ ├── iamStatusChanger.js │ │ │ └── permissionChecker.js │ │ ├── petService.js │ │ ├── settingsService.js │ │ └── shared │ │ │ └── email │ │ │ └── emailSender.js │ │ └── storage │ │ └── storageTokenGenerator.js ├── firebase.json ├── frontend │ ├── .env │ ├── .gitignore │ ├── .prettierrc │ ├── .vscode │ │ └── settings.json │ ├── jsconfig.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── images │ │ │ ├── 403.svg │ │ │ ├── 404.svg │ │ │ ├── 500.svg │ │ │ ├── emailUnverified.jpg │ │ │ ├── emptyPermissions.jpg │ │ │ ├── flags │ │ │ │ ├── 16 │ │ │ │ │ ├── Abkhazia.png │ │ │ │ │ ├── Afghanistan.png │ │ │ │ │ ├── Aland.png │ │ │ │ │ ├── Albania.png │ │ │ │ │ ├── Algeria.png │ │ │ │ │ ├── American-Samoa.png │ │ │ │ │ ├── Andorra.png │ │ │ │ │ ├── Angola.png │ │ │ │ │ ├── Anguilla.png │ │ │ │ │ ├── Antarctica.png │ │ │ │ │ ├── Antigua-and-Barbuda.png │ │ │ │ │ ├── Argentina.png │ │ │ │ │ ├── Armenia.png │ │ │ │ │ ├── Aruba.png │ │ │ │ │ ├── Australia.png │ │ │ │ │ ├── Austria.png │ │ │ │ │ ├── Azerbaijan.png │ │ │ │ │ ├── Bahamas.png │ │ │ │ │ ├── Bahrain.png │ │ │ │ │ ├── Bangladesh.png │ │ │ │ │ ├── Barbados.png │ │ │ │ │ ├── Basque-Country.png │ │ │ │ │ ├── Belarus.png │ │ │ │ │ ├── Belgium.png │ │ │ │ │ ├── Belize.png │ │ │ │ │ ├── Benin.png │ │ │ │ │ ├── Bermuda.png │ │ │ │ │ ├── Bhutan.png │ │ │ │ │ ├── Bolivia.png │ │ │ │ │ ├── Bosnia-and-Herzegovina.png │ │ │ │ │ ├── Botswana.png │ │ │ │ │ ├── Brazil.png │ │ │ │ │ ├── British-Antarctic-Territory.png │ │ │ │ │ ├── British-Virgin-Islands.png │ │ │ │ │ ├── Brunei.png │ │ │ │ │ ├── Bulgaria.png │ │ │ │ │ ├── Burkina-Faso.png │ │ │ │ │ ├── Burundi.png │ │ │ │ │ ├── Cambodia.png │ │ │ │ │ ├── Cameroon.png │ │ │ │ │ ├── Canada.png │ │ │ │ │ ├── Canary-Islands.png │ │ │ │ │ ├── Cape-Verde.png │ │ │ │ │ ├── Catalonia.png │ │ │ │ │ ├── Cayman-Islands.png │ │ │ │ │ ├── Central-African-Republic.png │ │ │ │ │ ├── Chad.png │ │ │ │ │ ├── Chile.png │ │ │ │ │ ├── China.png │ │ │ │ │ ├── Christmas-Island.png │ │ │ │ │ ├── Cocos-Keeling-Islands.png │ │ │ │ │ ├── Colombia.png │ │ │ │ │ ├── Commonwealth.png │ │ │ │ │ ├── Comoros.png │ │ │ │ │ ├── Cook-Islands.png │ │ │ │ │ ├── Costa-Rica.png │ │ │ │ │ ├── Cote-dIvoire.png │ │ │ │ │ ├── Croatia.png │ │ │ │ │ ├── Cuba.png │ │ │ │ │ ├── Curacao.png │ │ │ │ │ ├── Cyprus.png │ │ │ │ │ ├── Czech-Republic.png │ │ │ │ │ ├── Democratic-Republic-of-the-Congo.png │ │ │ │ │ ├── Denmark.png │ │ │ │ │ ├── Djibouti.png │ │ │ │ │ ├── Dominica.png │ │ │ │ │ ├── Dominican-Republic.png │ │ │ │ │ ├── East-Timor.png │ │ │ │ │ ├── Ecuador.png │ │ │ │ │ ├── Egypt.png │ │ │ │ │ ├── El-Salvador.png │ │ │ │ │ ├── England.png │ │ │ │ │ ├── Equatorial-Guinea.png │ │ │ │ │ ├── Eritrea.png │ │ │ │ │ ├── Estonia.png │ │ │ │ │ ├── Ethiopia.png │ │ │ │ │ ├── European-Union.png │ │ │ │ │ ├── Falkland-Islands.png │ │ │ │ │ ├── Faroes.png │ │ │ │ │ ├── Fiji.png │ │ │ │ │ ├── Finland.png │ │ │ │ │ ├── France.png │ │ │ │ │ ├── French-Polynesia.png │ │ │ │ │ ├── French-Southern-Territories.png │ │ │ │ │ ├── Gabon.png │ │ │ │ │ ├── Gambia.png │ │ │ │ │ ├── Georgia.png │ │ │ │ │ ├── Germany.png │ │ │ │ │ ├── Ghana.png │ │ │ │ │ ├── Gibraltar.png │ │ │ │ │ ├── GoSquared.png │ │ │ │ │ ├── Greece.png │ │ │ │ │ ├── Greenland.png │ │ │ │ │ ├── Grenada.png │ │ │ │ │ ├── Guam.png │ │ │ │ │ ├── Guatemala.png │ │ │ │ │ ├── Guernsey.png │ │ │ │ │ ├── Guinea-Bissau.png │ │ │ │ │ ├── Guinea.png │ │ │ │ │ ├── Guyana.png │ │ │ │ │ ├── Haiti.png │ │ │ │ │ ├── Honduras.png │ │ │ │ │ ├── Hong-Kong.png │ │ │ │ │ ├── Hungary.png │ │ │ │ │ ├── Iceland.png │ │ │ │ │ ├── India.png │ │ │ │ │ ├── Indonesia.png │ │ │ │ │ ├── Iran.png │ │ │ │ │ ├── Iraq.png │ │ │ │ │ ├── Ireland.png │ │ │ │ │ ├── Isle-of-Man.png │ │ │ │ │ ├── Israel.png │ │ │ │ │ ├── Italy.png │ │ │ │ │ ├── Jamaica.png │ │ │ │ │ ├── Japan.png │ │ │ │ │ ├── Jersey.png │ │ │ │ │ ├── Jordan.png │ │ │ │ │ ├── Kazakhstan.png │ │ │ │ │ ├── Kenya.png │ │ │ │ │ ├── Kiribati.png │ │ │ │ │ ├── Kosovo.png │ │ │ │ │ ├── Kuwait.png │ │ │ │ │ ├── Kyrgyzstan.png │ │ │ │ │ ├── Laos.png │ │ │ │ │ ├── Latvia.png │ │ │ │ │ ├── Lebanon.png │ │ │ │ │ ├── Lesotho.png │ │ │ │ │ ├── Liberia.png │ │ │ │ │ ├── Libya.png │ │ │ │ │ ├── Liechtenstein.png │ │ │ │ │ ├── Lithuania.png │ │ │ │ │ ├── Luxembourg.png │ │ │ │ │ ├── Macau.png │ │ │ │ │ ├── Macedonia.png │ │ │ │ │ ├── Madagascar.png │ │ │ │ │ ├── Malawi.png │ │ │ │ │ ├── Malaysia.png │ │ │ │ │ ├── Maldives.png │ │ │ │ │ ├── Mali.png │ │ │ │ │ ├── Malta.png │ │ │ │ │ ├── Mars.png │ │ │ │ │ ├── Marshall-Islands.png │ │ │ │ │ ├── Martinique.png │ │ │ │ │ ├── Mauritania.png │ │ │ │ │ ├── Mauritius.png │ │ │ │ │ ├── Mayotte.png │ │ │ │ │ ├── Mexico.png │ │ │ │ │ ├── Micronesia.png │ │ │ │ │ ├── Moldova.png │ │ │ │ │ ├── Monaco.png │ │ │ │ │ ├── Mongolia.png │ │ │ │ │ ├── Montenegro.png │ │ │ │ │ ├── Montserrat.png │ │ │ │ │ ├── Morocco.png │ │ │ │ │ ├── Mozambique.png │ │ │ │ │ ├── Myanmar.png │ │ │ │ │ ├── NATO.png │ │ │ │ │ ├── Nagorno-Karabakh.png │ │ │ │ │ ├── Namibia.png │ │ │ │ │ ├── Nauru.png │ │ │ │ │ ├── Nepal.png │ │ │ │ │ ├── Netherlands-Antilles.png │ │ │ │ │ ├── Netherlands.png │ │ │ │ │ ├── New-Caledonia.png │ │ │ │ │ ├── New-Zealand.png │ │ │ │ │ ├── Nicaragua.png │ │ │ │ │ ├── Niger.png │ │ │ │ │ ├── Nigeria.png │ │ │ │ │ ├── Niue.png │ │ │ │ │ ├── Norfolk-Island.png │ │ │ │ │ ├── North-Korea.png │ │ │ │ │ ├── Northern-Cyprus.png │ │ │ │ │ ├── Northern-Mariana-Islands.png │ │ │ │ │ ├── Norway.png │ │ │ │ │ ├── Olympics.png │ │ │ │ │ ├── Oman.png │ │ │ │ │ ├── Pakistan.png │ │ │ │ │ ├── Palau.png │ │ │ │ │ ├── Palestine.png │ │ │ │ │ ├── Panama.png │ │ │ │ │ ├── Papua-New-Guinea.png │ │ │ │ │ ├── Paraguay.png │ │ │ │ │ ├── Peru.png │ │ │ │ │ ├── Philippines.png │ │ │ │ │ ├── Pitcairn-Islands.png │ │ │ │ │ ├── Poland.png │ │ │ │ │ ├── Portugal.png │ │ │ │ │ ├── Puerto-Rico.png │ │ │ │ │ ├── Qatar.png │ │ │ │ │ ├── Red-Cross.png │ │ │ │ │ ├── Republic-of-the-Congo.png │ │ │ │ │ ├── Reunion.png │ │ │ │ │ ├── Romania.png │ │ │ │ │ ├── Russia.png │ │ │ │ │ ├── Rwanda.png │ │ │ │ │ ├── Saint-Barthelemy.png │ │ │ │ │ ├── Saint-Helena.png │ │ │ │ │ ├── Saint-Kitts-and-Nevis.png │ │ │ │ │ ├── Saint-Lucia.png │ │ │ │ │ ├── Saint-Martin.png │ │ │ │ │ ├── Saint-Vincent-and-the-Grenadines.png │ │ │ │ │ ├── Samoa.png │ │ │ │ │ ├── San-Marino.png │ │ │ │ │ ├── Sao-Tome-and-Principe.png │ │ │ │ │ ├── Saudi-Arabia.png │ │ │ │ │ ├── Scotland.png │ │ │ │ │ ├── Senegal.png │ │ │ │ │ ├── Serbia.png │ │ │ │ │ ├── Seychelles.png │ │ │ │ │ ├── Sierra-Leone.png │ │ │ │ │ ├── Singapore.png │ │ │ │ │ ├── Sint-Maarten.png │ │ │ │ │ ├── Slovakia.png │ │ │ │ │ ├── Slovenia.png │ │ │ │ │ ├── Solomon-Islands.png │ │ │ │ │ ├── Somalia.png │ │ │ │ │ ├── Somaliland.png │ │ │ │ │ ├── South-Africa.png │ │ │ │ │ ├── South-Georgia-and-the-South-Sandwich-Islands.png │ │ │ │ │ ├── South-Korea.png │ │ │ │ │ ├── South-Ossetia.png │ │ │ │ │ ├── South-Sudan.png │ │ │ │ │ ├── Spain.png │ │ │ │ │ ├── Sri-Lanka.png │ │ │ │ │ ├── Sudan.png │ │ │ │ │ ├── Suriname.png │ │ │ │ │ ├── Swaziland.png │ │ │ │ │ ├── Sweden.png │ │ │ │ │ ├── Switzerland.png │ │ │ │ │ ├── Syria.png │ │ │ │ │ ├── Taiwan.png │ │ │ │ │ ├── Tajikistan.png │ │ │ │ │ ├── Tanzania.png │ │ │ │ │ ├── Thailand.png │ │ │ │ │ ├── Togo.png │ │ │ │ │ ├── Tokelau.png │ │ │ │ │ ├── Tonga.png │ │ │ │ │ ├── Trinidad-and-Tobago.png │ │ │ │ │ ├── Tunisia.png │ │ │ │ │ ├── Turkey.png │ │ │ │ │ ├── Turkmenistan.png │ │ │ │ │ ├── Turks-and-Caicos-Islands.png │ │ │ │ │ ├── Tuvalu.png │ │ │ │ │ ├── US-Virgin-Islands.png │ │ │ │ │ ├── Uganda.png │ │ │ │ │ ├── Ukraine.png │ │ │ │ │ ├── United-Arab-Emirates.png │ │ │ │ │ ├── United-Kingdom.png │ │ │ │ │ ├── United-Nations.png │ │ │ │ │ ├── United-States.png │ │ │ │ │ ├── Unknown.png │ │ │ │ │ ├── Uruguay.png │ │ │ │ │ ├── Uzbekistan.png │ │ │ │ │ ├── Vanuatu.png │ │ │ │ │ ├── Vatican-City.png │ │ │ │ │ ├── Venezuela.png │ │ │ │ │ ├── Vietnam.png │ │ │ │ │ ├── Wales.png │ │ │ │ │ ├── Wallis-And-Futuna.png │ │ │ │ │ ├── Western-Sahara.png │ │ │ │ │ ├── Yemen.png │ │ │ │ │ ├── Zambia.png │ │ │ │ │ └── Zimbabwe.png │ │ │ │ └── 24 │ │ │ │ │ ├── Abkhazia.png │ │ │ │ │ ├── Afghanistan.png │ │ │ │ │ ├── Aland.png │ │ │ │ │ ├── Albania.png │ │ │ │ │ ├── Algeria.png │ │ │ │ │ ├── American-Samoa.png │ │ │ │ │ ├── Andorra.png │ │ │ │ │ ├── Angola.png │ │ │ │ │ ├── Anguilla.png │ │ │ │ │ ├── Antarctica.png │ │ │ │ │ ├── Antigua-and-Barbuda.png │ │ │ │ │ ├── Argentina.png │ │ │ │ │ ├── Armenia.png │ │ │ │ │ ├── Aruba.png │ │ │ │ │ ├── Australia.png │ │ │ │ │ ├── Austria.png │ │ │ │ │ ├── Azerbaijan.png │ │ │ │ │ ├── Bahamas.png │ │ │ │ │ ├── Bahrain.png │ │ │ │ │ ├── Bangladesh.png │ │ │ │ │ ├── Barbados.png │ │ │ │ │ ├── Basque-Country.png │ │ │ │ │ ├── Belarus.png │ │ │ │ │ ├── Belgium.png │ │ │ │ │ ├── Belize.png │ │ │ │ │ ├── Benin.png │ │ │ │ │ ├── Bermuda.png │ │ │ │ │ ├── Bhutan.png │ │ │ │ │ ├── Bolivia.png │ │ │ │ │ ├── Bosnia-and-Herzegovina.png │ │ │ │ │ ├── Botswana.png │ │ │ │ │ ├── Brazil.png │ │ │ │ │ ├── British-Antarctic-Territory.png │ │ │ │ │ ├── British-Virgin-Islands.png │ │ │ │ │ ├── Brunei.png │ │ │ │ │ ├── Bulgaria.png │ │ │ │ │ ├── Burkina-Faso.png │ │ │ │ │ ├── Burundi.png │ │ │ │ │ ├── Cambodia.png │ │ │ │ │ ├── Cameroon.png │ │ │ │ │ ├── Canada.png │ │ │ │ │ ├── Canary-Islands.png │ │ │ │ │ ├── Cape-Verde.png │ │ │ │ │ ├── Catalonia.png │ │ │ │ │ ├── Cayman-Islands.png │ │ │ │ │ ├── Central-African-Republic.png │ │ │ │ │ ├── Chad.png │ │ │ │ │ ├── Chile.png │ │ │ │ │ ├── China.png │ │ │ │ │ ├── Christmas-Island.png │ │ │ │ │ ├── Cocos-Keeling-Islands.png │ │ │ │ │ ├── Colombia.png │ │ │ │ │ ├── Commonwealth.png │ │ │ │ │ ├── Comoros.png │ │ │ │ │ ├── Cook-Islands.png │ │ │ │ │ ├── Costa-Rica.png │ │ │ │ │ ├── Cote-dIvoire.png │ │ │ │ │ ├── Croatia.png │ │ │ │ │ ├── Cuba.png │ │ │ │ │ ├── Curacao.png │ │ │ │ │ ├── Cyprus.png │ │ │ │ │ ├── Czech-Republic.png │ │ │ │ │ ├── Democratic-Republic-of-the-Congo.png │ │ │ │ │ ├── Denmark.png │ │ │ │ │ ├── Djibouti.png │ │ │ │ │ ├── Dominica.png │ │ │ │ │ ├── Dominican-Republic.png │ │ │ │ │ ├── East-Timor.png │ │ │ │ │ ├── Ecuador.png │ │ │ │ │ ├── Egypt.png │ │ │ │ │ ├── El-Salvador.png │ │ │ │ │ ├── England.png │ │ │ │ │ ├── Equatorial-Guinea.png │ │ │ │ │ ├── Eritrea.png │ │ │ │ │ ├── Estonia.png │ │ │ │ │ ├── Ethiopia.png │ │ │ │ │ ├── European-Union.png │ │ │ │ │ ├── Falkland-Islands.png │ │ │ │ │ ├── Faroes.png │ │ │ │ │ ├── Fiji.png │ │ │ │ │ ├── Finland.png │ │ │ │ │ ├── France.png │ │ │ │ │ ├── French-Polynesia.png │ │ │ │ │ ├── French-Southern-Territories.png │ │ │ │ │ ├── Gabon.png │ │ │ │ │ ├── Gambia.png │ │ │ │ │ ├── Georgia.png │ │ │ │ │ ├── Germany.png │ │ │ │ │ ├── Ghana.png │ │ │ │ │ ├── Gibraltar.png │ │ │ │ │ ├── GoSquared.png │ │ │ │ │ ├── Greece.png │ │ │ │ │ ├── Greenland.png │ │ │ │ │ ├── Grenada.png │ │ │ │ │ ├── Guam.png │ │ │ │ │ ├── Guatemala.png │ │ │ │ │ ├── Guernsey.png │ │ │ │ │ ├── Guinea-Bissau.png │ │ │ │ │ ├── Guinea.png │ │ │ │ │ ├── Guyana.png │ │ │ │ │ ├── Haiti.png │ │ │ │ │ ├── Honduras.png │ │ │ │ │ ├── Hong-Kong.png │ │ │ │ │ ├── Hungary.png │ │ │ │ │ ├── Iceland.png │ │ │ │ │ ├── India.png │ │ │ │ │ ├── Indonesia.png │ │ │ │ │ ├── Iran.png │ │ │ │ │ ├── Iraq.png │ │ │ │ │ ├── Ireland.png │ │ │ │ │ ├── Isle-of-Man.png │ │ │ │ │ ├── Israel.png │ │ │ │ │ ├── Italy.png │ │ │ │ │ ├── Jamaica.png │ │ │ │ │ ├── Japan.png │ │ │ │ │ ├── Jersey.png │ │ │ │ │ ├── Jordan.png │ │ │ │ │ ├── Kazakhstan.png │ │ │ │ │ ├── Kenya.png │ │ │ │ │ ├── Kiribati.png │ │ │ │ │ ├── Kosovo.png │ │ │ │ │ ├── Kuwait.png │ │ │ │ │ ├── Kyrgyzstan.png │ │ │ │ │ ├── Laos.png │ │ │ │ │ ├── Latvia.png │ │ │ │ │ ├── Lebanon.png │ │ │ │ │ ├── Lesotho.png │ │ │ │ │ ├── Liberia.png │ │ │ │ │ ├── Libya.png │ │ │ │ │ ├── Liechtenstein.png │ │ │ │ │ ├── Lithuania.png │ │ │ │ │ ├── Luxembourg.png │ │ │ │ │ ├── Macau.png │ │ │ │ │ ├── Macedonia.png │ │ │ │ │ ├── Madagascar.png │ │ │ │ │ ├── Malawi.png │ │ │ │ │ ├── Malaysia.png │ │ │ │ │ ├── Maldives.png │ │ │ │ │ ├── Mali.png │ │ │ │ │ ├── Malta.png │ │ │ │ │ ├── Mars.png │ │ │ │ │ ├── Marshall-Islands.png │ │ │ │ │ ├── Martinique.png │ │ │ │ │ ├── Mauritania.png │ │ │ │ │ ├── Mauritius.png │ │ │ │ │ ├── Mayotte.png │ │ │ │ │ ├── Mexico.png │ │ │ │ │ ├── Micronesia.png │ │ │ │ │ ├── Moldova.png │ │ │ │ │ ├── Monaco.png │ │ │ │ │ ├── Mongolia.png │ │ │ │ │ ├── Montenegro.png │ │ │ │ │ ├── Montserrat.png │ │ │ │ │ ├── Morocco.png │ │ │ │ │ ├── Mozambique.png │ │ │ │ │ ├── Myanmar.png │ │ │ │ │ ├── NATO.png │ │ │ │ │ ├── Nagorno-Karabakh.png │ │ │ │ │ ├── Namibia.png │ │ │ │ │ ├── Nauru.png │ │ │ │ │ ├── Nepal.png │ │ │ │ │ ├── Netherlands-Antilles.png │ │ │ │ │ ├── Netherlands.png │ │ │ │ │ ├── New-Caledonia.png │ │ │ │ │ ├── New-Zealand.png │ │ │ │ │ ├── Nicaragua.png │ │ │ │ │ ├── Niger.png │ │ │ │ │ ├── Nigeria.png │ │ │ │ │ ├── Niue.png │ │ │ │ │ ├── Norfolk-Island.png │ │ │ │ │ ├── North-Korea.png │ │ │ │ │ ├── Northern-Cyprus.png │ │ │ │ │ ├── Northern-Mariana-Islands.png │ │ │ │ │ ├── Norway.png │ │ │ │ │ ├── Olympics.png │ │ │ │ │ ├── Oman.png │ │ │ │ │ ├── Pakistan.png │ │ │ │ │ ├── Palau.png │ │ │ │ │ ├── Palestine.png │ │ │ │ │ ├── Panama.png │ │ │ │ │ ├── Papua-New-Guinea.png │ │ │ │ │ ├── Paraguay.png │ │ │ │ │ ├── Peru.png │ │ │ │ │ ├── Philippines.png │ │ │ │ │ ├── Pitcairn-Islands.png │ │ │ │ │ ├── Poland.png │ │ │ │ │ ├── Portugal.png │ │ │ │ │ ├── Puerto-Rico.png │ │ │ │ │ ├── Qatar.png │ │ │ │ │ ├── Red-Cross.png │ │ │ │ │ ├── Republic-of-the-Congo.png │ │ │ │ │ ├── Reunion.png │ │ │ │ │ ├── Romania.png │ │ │ │ │ ├── Russia.png │ │ │ │ │ ├── Rwanda.png │ │ │ │ │ ├── Saint-Barthelemy.png │ │ │ │ │ ├── Saint-Helena.png │ │ │ │ │ ├── Saint-Kitts-and-Nevis.png │ │ │ │ │ ├── Saint-Lucia.png │ │ │ │ │ ├── Saint-Martin.png │ │ │ │ │ ├── Saint-Vincent-and-the-Grenadines.png │ │ │ │ │ ├── Samoa.png │ │ │ │ │ ├── San-Marino.png │ │ │ │ │ ├── Sao-Tome-and-Principe.png │ │ │ │ │ ├── Saudi-Arabia.png │ │ │ │ │ ├── Scotland.png │ │ │ │ │ ├── Senegal.png │ │ │ │ │ ├── Serbia.png │ │ │ │ │ ├── Seychelles.png │ │ │ │ │ ├── Sierra-Leone.png │ │ │ │ │ ├── Singapore.png │ │ │ │ │ ├── Sint-Maarten.png │ │ │ │ │ ├── Slovakia.png │ │ │ │ │ ├── Slovenia.png │ │ │ │ │ ├── Solomon-Islands.png │ │ │ │ │ ├── Somalia.png │ │ │ │ │ ├── Somaliland.png │ │ │ │ │ ├── South-Africa.png │ │ │ │ │ ├── South-Georgia-and-the-South-Sandwich-Islands.png │ │ │ │ │ ├── South-Korea.png │ │ │ │ │ ├── South-Ossetia.png │ │ │ │ │ ├── South-Sudan.png │ │ │ │ │ ├── Spain.png │ │ │ │ │ ├── Sri-Lanka.png │ │ │ │ │ ├── Sudan.png │ │ │ │ │ ├── Suriname.png │ │ │ │ │ ├── Swaziland.png │ │ │ │ │ ├── Sweden.png │ │ │ │ │ ├── Switzerland.png │ │ │ │ │ ├── Syria.png │ │ │ │ │ ├── Taiwan.png │ │ │ │ │ ├── Tajikistan.png │ │ │ │ │ ├── Tanzania.png │ │ │ │ │ ├── Thailand.png │ │ │ │ │ ├── Togo.png │ │ │ │ │ ├── Tokelau.png │ │ │ │ │ ├── Tonga.png │ │ │ │ │ ├── Trinidad-and-Tobago.png │ │ │ │ │ ├── Tunisia.png │ │ │ │ │ ├── Turkey.png │ │ │ │ │ ├── Turkmenistan.png │ │ │ │ │ ├── Turks-and-Caicos-Islands.png │ │ │ │ │ ├── Tuvalu.png │ │ │ │ │ ├── US-Virgin-Islands.png │ │ │ │ │ ├── Uganda.png │ │ │ │ │ ├── Ukraine.png │ │ │ │ │ ├── United-Arab-Emirates.png │ │ │ │ │ ├── United-Kingdom.png │ │ │ │ │ ├── United-Nations.png │ │ │ │ │ ├── United-States.png │ │ │ │ │ ├── Unknown.png │ │ │ │ │ ├── Uruguay.png │ │ │ │ │ ├── Uzbekistan.png │ │ │ │ │ ├── Vanuatu.png │ │ │ │ │ ├── Vatican-City.png │ │ │ │ │ ├── Venezuela.png │ │ │ │ │ ├── Vietnam.png │ │ │ │ │ ├── Wales.png │ │ │ │ │ ├── Wallis-And-Futuna.png │ │ │ │ │ ├── Western-Sahara.png │ │ │ │ │ ├── Yemen.png │ │ │ │ │ ├── Zambia.png │ │ │ │ │ └── Zimbabwe.png │ │ │ ├── forgotPassword.jpg │ │ │ ├── signin.jpg │ │ │ └── signup.jpg │ │ ├── index.html │ │ ├── manifest.json │ │ └── theme │ │ │ ├── dist │ │ │ ├── cyan.css │ │ │ ├── default.css │ │ │ ├── geek-blue.css │ │ │ ├── gold.css │ │ │ ├── lime.css │ │ │ ├── magenta.css │ │ │ ├── orange.css │ │ │ ├── polar-green.css │ │ │ ├── purple.css │ │ │ ├── red.css │ │ │ ├── volcano.css │ │ │ └── yellow.css │ │ │ └── src │ │ │ ├── cyan.less │ │ │ ├── default.less │ │ │ ├── geek-blue.less │ │ │ ├── gold.less │ │ │ ├── index.sh │ │ │ ├── lime.less │ │ │ ├── magenta.less │ │ │ ├── orange.less │ │ │ ├── polar-green.less │ │ │ ├── purple.less │ │ │ ├── red.less │ │ │ ├── volcano.less │ │ │ └── yellow.less │ └── src │ │ ├── App.js │ │ ├── config │ │ ├── development.js │ │ ├── index.js │ │ ├── localhost.js │ │ ├── production.js │ │ └── testenv.js │ │ ├── i18n │ │ ├── en.js │ │ ├── index.js │ │ └── pt-BR.js │ │ ├── index.js │ │ ├── modules │ │ ├── auditLog │ │ │ ├── auditLogActions.js │ │ │ ├── auditLogExporterFields.js │ │ │ ├── auditLogModel.js │ │ │ ├── auditLogReducers.js │ │ │ ├── auditLogSelectors.js │ │ │ └── auditLogService.js │ │ ├── auth │ │ │ ├── __mocks__ │ │ │ │ └── authService.js │ │ │ ├── authActions.js │ │ │ ├── authInitializer.js │ │ │ ├── authReducers.js │ │ │ ├── authSelectors.js │ │ │ ├── authService.js │ │ │ ├── permissionChecker.js │ │ │ └── userModel.js │ │ ├── booking │ │ │ ├── bookingModel.js │ │ │ ├── bookingReducers.js │ │ │ ├── bookingSelectors.js │ │ │ ├── bookingService.js │ │ │ ├── destroy │ │ │ │ ├── bookingDestroyActions.js │ │ │ │ ├── bookingDestroyReducers.js │ │ │ │ └── bookingDestroySelectors.js │ │ │ ├── form │ │ │ │ ├── bookingFormActions.js │ │ │ │ ├── bookingFormReducers.js │ │ │ │ └── bookingFormSelectors.js │ │ │ ├── importer │ │ │ │ ├── bookingImporterActions.js │ │ │ │ ├── bookingImporterFields.js │ │ │ │ ├── bookingImporterReducers.js │ │ │ │ └── bookingImporterSelectors.js │ │ │ ├── list │ │ │ │ ├── bookingListActions.js │ │ │ │ ├── bookingListExporterFields.js │ │ │ │ ├── bookingListReducers.js │ │ │ │ └── bookingListSelectors.js │ │ │ └── view │ │ │ │ ├── bookingViewActions.js │ │ │ │ ├── bookingViewReducers.js │ │ │ │ └── bookingViewSelectors.js │ │ ├── iam │ │ │ ├── form │ │ │ │ ├── iamFormActions.js │ │ │ │ ├── iamFormReducers.js │ │ │ │ └── iamFormSelectors.js │ │ │ ├── iamReducers.js │ │ │ ├── iamSelectors.js │ │ │ ├── iamService.js │ │ │ ├── importer │ │ │ │ ├── iamImporterActions.js │ │ │ │ ├── iamImporterFields.js │ │ │ │ ├── iamImporterReducers.js │ │ │ │ └── iamImporterSelectors.js │ │ │ ├── list │ │ │ │ ├── iamListReducers.js │ │ │ │ ├── mode │ │ │ │ │ ├── iamListModeActions.js │ │ │ │ │ ├── iamListModeReducers.js │ │ │ │ │ └── iamListModeSelectors.js │ │ │ │ ├── roles │ │ │ │ │ ├── iamListRolesActions.js │ │ │ │ │ ├── iamListRolesReducers.js │ │ │ │ │ └── iamListRolesSelectors.js │ │ │ │ └── users │ │ │ │ │ ├── iamListUsersActions.js │ │ │ │ │ ├── iamListUsersExporterFields.js │ │ │ │ │ ├── iamListUsersReducers.js │ │ │ │ │ └── iamListUsersSelectors.js │ │ │ └── view │ │ │ │ ├── iamViewActions.js │ │ │ │ ├── iamViewReducers.js │ │ │ │ └── iamViewSelectors.js │ │ ├── initializers.js │ │ ├── layout │ │ │ ├── layoutActions.js │ │ │ ├── layoutReducers.js │ │ │ └── layoutSelectors.js │ │ ├── pet │ │ │ ├── destroy │ │ │ │ ├── petDestroyActions.js │ │ │ │ ├── petDestroyReducers.js │ │ │ │ └── petDestroySelectors.js │ │ │ ├── form │ │ │ │ ├── petFormActions.js │ │ │ │ ├── petFormReducers.js │ │ │ │ └── petFormSelectors.js │ │ │ ├── importer │ │ │ │ ├── petImporterActions.js │ │ │ │ ├── petImporterFields.js │ │ │ │ ├── petImporterReducers.js │ │ │ │ └── petImporterSelectors.js │ │ │ ├── list │ │ │ │ ├── petListActions.js │ │ │ │ ├── petListExporterFields.js │ │ │ │ ├── petListReducers.js │ │ │ │ └── petListSelectors.js │ │ │ ├── petModel.js │ │ │ ├── petReducers.js │ │ │ ├── petSelectors.js │ │ │ ├── petService.js │ │ │ └── view │ │ │ │ ├── petViewActions.js │ │ │ │ ├── petViewReducers.js │ │ │ │ └── petViewSelectors.js │ │ ├── reducers.js │ │ ├── settings │ │ │ ├── settingsActions.js │ │ │ ├── settingsModel.js │ │ │ ├── settingsReducers.js │ │ │ ├── settingsSelectors.js │ │ │ └── settingsService.js │ │ ├── shared │ │ │ ├── destroy │ │ │ │ ├── destroyActions.js │ │ │ │ ├── destroyReducers.js │ │ │ │ └── destroySelectors.js │ │ │ ├── error │ │ │ │ └── errors.js │ │ │ ├── excel │ │ │ │ └── excel.js │ │ │ ├── exporter │ │ │ │ ├── exporter.js │ │ │ │ └── exporterSchema.js │ │ │ ├── fields │ │ │ │ ├── booleanField.js │ │ │ │ ├── dateField.js │ │ │ │ ├── dateRangeField.js │ │ │ │ ├── dateTimeField.js │ │ │ │ ├── dateTimeRangeField.js │ │ │ │ ├── decimalField.js │ │ │ │ ├── decimalRangeField.js │ │ │ │ ├── enumeratorField.js │ │ │ │ ├── filesField.js │ │ │ │ ├── genericField.js │ │ │ │ ├── idField.js │ │ │ │ ├── imagesField.js │ │ │ │ ├── integerField.js │ │ │ │ ├── integerRangeField.js │ │ │ │ ├── jsonField.js │ │ │ │ ├── relationToManyField.js │ │ │ │ ├── relationToOneField.js │ │ │ │ ├── stringArrayField.js │ │ │ │ └── stringField.js │ │ │ ├── firebase │ │ │ │ ├── firebaseFileUploader.js │ │ │ │ └── firebaseInitializer.js │ │ │ ├── form │ │ │ │ ├── formActions.js │ │ │ │ ├── formReducers.js │ │ │ │ └── formSelectors.js │ │ │ ├── graphql │ │ │ │ └── graphqlClient.js │ │ │ ├── importer │ │ │ │ ├── importer.js │ │ │ │ ├── importerActions.js │ │ │ │ ├── importerReducers.js │ │ │ │ ├── importerSchema.js │ │ │ │ ├── importerSelectors.js │ │ │ │ └── importerStatuses.js │ │ │ ├── pagination │ │ │ │ ├── paginationAction.js │ │ │ │ ├── paginationReducer.js │ │ │ │ └── paginationSelectors.js │ │ │ └── view │ │ │ │ ├── viewActions.js │ │ │ │ ├── viewReducers.js │ │ │ │ └── viewSelectors.js │ │ └── store.js │ │ ├── registerServiceWorker.js │ │ ├── security │ │ ├── permissions.js │ │ └── roles.js │ │ ├── setupTests.js │ │ └── view │ │ ├── auditLog │ │ ├── AuditLogFilter.js │ │ ├── AuditLogPage.js │ │ ├── AuditLogTable.js │ │ ├── AuditLogToolbar.js │ │ └── AuditLogViewModal.js │ │ ├── auth │ │ ├── EmailUnverifiedPage.js │ │ ├── EmptyPermissionsPage.js │ │ ├── ForgotPasswordPage.js │ │ ├── ProfileForm.js │ │ ├── ProfileFormPage.js │ │ ├── SigninPage.js │ │ ├── SignupPage.js │ │ └── styles │ │ │ ├── Content.js │ │ │ ├── EmailUnverifiedPageWrapper.js │ │ │ ├── EmptyPermissionsPageWrapper.js │ │ │ ├── ForgotPasswordPageWrapper.js │ │ │ ├── Logo.js │ │ │ ├── OtherActions.js │ │ │ ├── SigninPageWrapper.js │ │ │ ├── SignupPageWrapper.js │ │ │ ├── SocialButtons.js │ │ │ └── Wrapper.js │ │ ├── booking │ │ ├── autocomplete │ │ │ └── BookingAutocompleteFormItem.js │ │ ├── form │ │ │ ├── BookingForm.js │ │ │ └── BookingFormPage.js │ │ ├── importer │ │ │ └── BookingImporterPage.js │ │ ├── list │ │ │ ├── BookingListFilter.js │ │ │ ├── BookingListItem.js │ │ │ ├── BookingListPage.js │ │ │ ├── BookingListTable.js │ │ │ └── BookingListToolbar.js │ │ └── view │ │ │ ├── BookingView.js │ │ │ ├── BookingViewItem.js │ │ │ ├── BookingViewPage.js │ │ │ └── BookingViewToolbar.js │ │ ├── home │ │ ├── HomeBarChart.js │ │ ├── HomeDoughnutChart.js │ │ ├── HomeHorizontalBarChart.js │ │ ├── HomeLineChart.js │ │ ├── HomeMixChartOne.js │ │ ├── HomeMixChartTwo.js │ │ ├── HomePage.js │ │ ├── HomePolarChart.js │ │ └── HomeRadarChart.js │ │ ├── iam │ │ ├── autocomplete │ │ │ └── UserAutocompleteFormItem.js │ │ ├── edit │ │ │ ├── IamEditForm.js │ │ │ └── IamEditPage.js │ │ ├── importer │ │ │ └── IamImporterPage.js │ │ ├── list │ │ │ ├── IamFilter.js │ │ │ ├── IamPage.js │ │ │ ├── IamTable.js │ │ │ ├── IamToolbar.js │ │ │ ├── IamViewBy.js │ │ │ ├── roles │ │ │ │ ├── IamRolesFilter.js │ │ │ │ ├── IamRolesTable.js │ │ │ │ └── IamRolesToolbar.js │ │ │ ├── styles │ │ │ │ └── IamViewByWrapper.js │ │ │ └── users │ │ │ │ ├── IamUsersFilter.js │ │ │ │ ├── IamUsersTable.js │ │ │ │ ├── IamUsersToolbar.js │ │ │ │ └── UserListItem.js │ │ ├── new │ │ │ ├── IamNewForm.js │ │ │ └── IamNewPage.js │ │ └── view │ │ │ ├── IamView.js │ │ │ ├── IamViewPage.js │ │ │ ├── IamViewToolbar.js │ │ │ └── UserViewItem.js │ │ ├── layout │ │ ├── Header.js │ │ ├── I18nFlags.js │ │ ├── I18nSelect.js │ │ ├── Layout.js │ │ ├── Menu.js │ │ └── styles │ │ │ ├── ContentWrapper.js │ │ │ ├── HeaderWrapper.js │ │ │ ├── I18nFlagsWrapper.js │ │ │ ├── LayoutWrapper.js │ │ │ └── SiderWrapper.js │ │ ├── pet │ │ ├── autocomplete │ │ │ └── PetAutocompleteFormItem.js │ │ ├── form │ │ │ ├── PetForm.js │ │ │ └── PetFormPage.js │ │ ├── importer │ │ │ └── PetImporterPage.js │ │ ├── list │ │ │ ├── PetListFilter.js │ │ │ ├── PetListItem.js │ │ │ ├── PetListPage.js │ │ │ ├── PetListTable.js │ │ │ └── PetListToolbar.js │ │ └── view │ │ │ ├── PetView.js │ │ │ ├── PetViewItem.js │ │ │ ├── PetViewPage.js │ │ │ └── PetViewToolbar.js │ │ ├── routes.js │ │ ├── settings │ │ ├── SettingsForm.js │ │ ├── SettingsFormPage.js │ │ ├── SettingsFormToolbar.js │ │ └── styles │ │ │ └── ThemeRadioWrapper.js │ │ └── shared │ │ ├── Breadcrumb.js │ │ ├── CustomLoadable.js │ │ ├── ImagesViewer.js │ │ ├── JsonHighlighter.js │ │ ├── LoadingComponent.js │ │ ├── ProgressBar.js │ │ ├── Spinner.js │ │ ├── __mocks__ │ │ └── message.js │ │ ├── errors │ │ ├── Error403Page.js │ │ ├── Error404Page.js │ │ ├── Error500Page.js │ │ └── styles │ │ │ └── ErrorWrapper.js │ │ ├── form │ │ ├── formErrors.js │ │ ├── formFilterSchema.js │ │ ├── formSchema.js │ │ └── items │ │ │ ├── AutocompleteFormItem.js │ │ │ ├── CheckboxFormItem.js │ │ │ ├── DatePickerFormItem.js │ │ │ ├── DatePickerRangeFormItem.js │ │ │ ├── FilesFormItem.js │ │ │ ├── ImagesFormItem.js │ │ │ ├── InputFormItem.js │ │ │ ├── InputNumberFormItem.js │ │ │ ├── InputNumberRangeFormItem.js │ │ │ ├── InputRangeFormItem.js │ │ │ ├── RadioFormItem.js │ │ │ ├── SelectFormItem.js │ │ │ ├── SwitchFormItem.js │ │ │ ├── TagsFormItem.js │ │ │ ├── TextAreaFormItem.js │ │ │ └── ViewFormItem.js │ │ ├── importer │ │ ├── Importer.js │ │ ├── ImporterForm.js │ │ ├── ImporterList.js │ │ ├── ImporterRowStatus.js │ │ ├── ImporterStatus.js │ │ ├── ImporterToolbar.js │ │ └── styles │ │ │ ├── ImporterErrorStatusMessage.js │ │ │ └── ImporterStatusWrapper.js │ │ ├── list │ │ ├── FileListView.js │ │ └── ImagesListView.js │ │ ├── message.js │ │ ├── routes │ │ ├── EmailUnverifiedRoute.js │ │ ├── EmptyPermissionsRoute.js │ │ ├── PrivateRoute.js │ │ ├── PublicRoute.js │ │ └── RoutesComponent.js │ │ ├── styles │ │ ├── ButtonLink.js │ │ ├── FilterWrapper.js │ │ ├── FormWrapper.js │ │ ├── ImagesUploaderWrapper.js │ │ ├── ImagesViewerWrapper.js │ │ ├── PageTitle.js │ │ ├── TableWrapper.js │ │ ├── Toolbar.js │ │ └── ViewWrapper.js │ │ ├── uploaders │ │ ├── FilesUploader.js │ │ └── ImagesUploader.js │ │ └── view │ │ ├── CustomViewItem.js │ │ ├── FilesViewItem.js │ │ ├── ImagesViewItem.js │ │ └── TextViewItem.js └── storage.rules ├── 2-Basics ├── 1 - NodeJS and Javascript │ ├── 1-basics.js │ ├── 2-functions-and-classes.js │ ├── 3-callbacks-and-arrow-functions.js │ ├── 4-spread-deconstruct-objects.js │ ├── 5-spread-deconstruct-arrays.js │ ├── 6-npm-modules.js │ ├── 7-async-await.js │ ├── package-lock.json │ └── package.json ├── 2 - React │ └── todos-completed │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ │ ├── src │ │ ├── TodoApp.js │ │ ├── TodoForm.js │ │ ├── TodoList.js │ │ └── index.js │ │ └── yarn.lock ├── 4 - React Router │ └── link.txt └── 5 - Formik and Yup │ └── todos-completed │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json │ ├── src │ ├── index.js │ ├── modules │ │ ├── reducers.js │ │ ├── store.js │ │ └── todos │ │ │ ├── todosActions.js │ │ │ ├── todosReducers.js │ │ │ └── todosSelectors.js │ └── view │ │ ├── TodoApp.js │ │ ├── TodoForm.js │ │ └── TodoList.js │ └── yarn.lock ├── 3-Customization ├── .prettierrc ├── 01-I18n │ ├── backend-firestore │ │ └── src │ │ │ └── i18n │ │ │ └── en.js │ ├── backend-mongodb │ │ └── src │ │ │ └── i18n │ │ │ └── en.js │ ├── backend-sql │ │ └── src │ │ │ └── i18n │ │ │ └── en.js │ └── frontend │ │ └── src │ │ └── i18n │ │ └── en.js ├── 02-Themes, Images and Icons │ └── frontend │ │ ├── public │ │ └── images │ │ │ ├── signin.jpg │ │ │ └── signup.jpg │ │ └── src │ │ └── view │ │ └── routes.js ├── 03-User roles: Manager, Employee and Pet Owner │ ├── backend-firestore │ │ └── src │ │ │ ├── i18n │ │ │ └── en.js │ │ │ ├── security │ │ │ ├── permissions.js │ │ │ └── roles.js │ │ │ └── services │ │ │ ├── auth │ │ │ └── authUserWriter.js │ │ │ └── iam │ │ │ ├── iamEditor.js │ │ │ ├── iamRemover.js │ │ │ └── userRoleChecker.js │ ├── backend-mongodb │ │ └── src │ │ │ ├── i18n │ │ │ └── en.js │ │ │ ├── security │ │ │ ├── permissions.js │ │ │ └── roles.js │ │ │ └── services │ │ │ ├── auth │ │ │ └── authUserWriter.js │ │ │ └── iam │ │ │ ├── iamEditor.js │ │ │ ├── iamRemover.js │ │ │ └── userRoleChecker.js │ ├── backend-sql │ │ └── src │ │ │ ├── i18n │ │ │ └── en.js │ │ │ ├── security │ │ │ ├── permissions.js │ │ │ └── roles.js │ │ │ └── services │ │ │ ├── auth │ │ │ └── authUserWriter.js │ │ │ └── iam │ │ │ ├── iamEditor.js │ │ │ ├── iamRemover.js │ │ │ └── userRoleChecker.js │ └── frontend │ │ └── src │ │ ├── i18n │ │ └── en.js │ │ ├── modules │ │ └── auth │ │ │ └── authSelectors.js │ │ └── security │ │ ├── permissions.js │ │ └── roles.js ├── 04-New users start as pet owners │ ├── backend-firestore │ │ └── src │ │ │ └── services │ │ │ └── auth │ │ │ └── authUserWriter.js │ ├── backend-mongodb │ │ └── src │ │ │ └── services │ │ │ └── auth │ │ │ └── authUserWriter.js │ └── backend-sql │ │ └── src │ │ └── services │ │ └── auth │ │ └── authUserWriter.js ├── 05-First page is New Pet (when none) or Bookings │ └── frontend │ │ └── src │ │ ├── i18n │ │ └── en.js │ │ ├── modules │ │ ├── auth │ │ │ ├── authActions.js │ │ │ ├── authReducers.js │ │ │ └── authSelectors.js │ │ └── pet │ │ │ └── petService.js │ │ └── view │ │ ├── routes.js │ │ └── shared │ │ └── routes │ │ └── RoutesComponent.js ├── 06-Pet Owners can only see their pets │ ├── backend-firestore │ │ └── src │ │ │ ├── api │ │ │ └── pet │ │ │ │ └── queries │ │ │ │ └── petAutocomplete.js │ │ │ ├── database │ │ │ └── repositories │ │ │ │ └── petRepository.js │ │ │ ├── security │ │ │ └── permissions.js │ │ │ └── services │ │ │ └── petService.js │ ├── backend-mongodb │ │ └── src │ │ │ ├── api │ │ │ └── pet │ │ │ │ └── queries │ │ │ │ └── petAutocomplete.js │ │ │ ├── database │ │ │ └── repositories │ │ │ │ └── petRepository.js │ │ │ ├── security │ │ │ └── permissions.js │ │ │ └── services │ │ │ └── petService.js │ ├── backend-sql │ │ └── src │ │ │ ├── api │ │ │ └── pet │ │ │ │ └── queries │ │ │ │ └── petAutocomplete.js │ │ │ ├── database │ │ │ └── repositories │ │ │ │ └── petRepository.js │ │ │ ├── security │ │ │ └── permissions.js │ │ │ └── services │ │ │ └── petService.js │ └── frontend │ │ └── src │ │ ├── modules │ │ └── pet │ │ │ └── petService.js │ │ ├── security │ │ └── permissions.js │ │ └── view │ │ ├── booking │ │ └── list │ │ │ └── BookingListFilter.js │ │ └── pet │ │ ├── autocomplete │ │ └── PetAutocompleteFormItem.js │ │ ├── form │ │ └── PetForm.js │ │ └── list │ │ ├── PetListFilter.js │ │ └── PetListTable.js ├── 07-Booking statuses as constraints │ ├── backend-firestore │ │ └── src │ │ │ ├── api │ │ │ └── booking │ │ │ │ └── types │ │ │ │ └── bookingEnums.js │ │ │ ├── database │ │ │ └── models │ │ │ │ └── booking.js │ │ │ └── enumerators │ │ │ └── bookingStatus.js │ ├── backend-mongodb │ │ └── src │ │ │ ├── api │ │ │ └── booking │ │ │ │ └── types │ │ │ │ └── bookingEnums.js │ │ │ ├── database │ │ │ └── models │ │ │ │ └── booking.js │ │ │ └── enumerators │ │ │ └── bookingStatus.js │ ├── backend-sql │ │ └── src │ │ │ ├── api │ │ │ └── booking │ │ │ │ └── types │ │ │ │ └── bookingEnums.js │ │ │ ├── database │ │ │ └── models │ │ │ │ └── booking.js │ │ │ └── enumerators │ │ │ └── bookingStatus.js │ └── frontend │ │ └── src │ │ └── modules │ │ └── booking │ │ ├── bookingModel.js │ │ └── bookingStatus.js ├── 08-Pet Owners can only see their bookings │ ├── backend-firestore │ │ └── src │ │ │ ├── api │ │ │ └── booking │ │ │ │ └── queries │ │ │ │ └── bookingAutocopmlete.js │ │ │ ├── database │ │ │ └── repositories │ │ │ │ └── bookingRepository.js │ │ │ └── services │ │ │ └── bookingService.js │ ├── backend-mongodb │ │ └── src │ │ │ ├── api │ │ │ └── booking │ │ │ │ └── queries │ │ │ │ └── bookingAutocopmlete.js │ │ │ ├── database │ │ │ └── repositories │ │ │ │ └── bookingRepository.js │ │ │ └── services │ │ │ └── bookingService.js │ ├── backend-sql │ │ └── src │ │ │ ├── api │ │ │ └── booking │ │ │ │ └── queries │ │ │ │ └── bookingAutocomplete.js │ │ │ ├── database │ │ │ └── repositories │ │ │ │ └── bookingRepository.js │ │ │ └── services │ │ │ └── bookingService.js │ └── frontend │ │ └── src │ │ ├── modules │ │ └── booking │ │ │ └── bookingService.js │ │ └── view │ │ └── booking │ │ ├── autocomplete │ │ └── BookingAutocompleteFormItem.js │ │ ├── form │ │ └── BookingForm.js │ │ └── list │ │ └── BookingListTable.js ├── 09-Pet can only be deleted if it has no bookings │ ├── backend-firestore │ │ └── src │ │ │ ├── database │ │ │ └── repositories │ │ │ │ └── bookingRepository.js │ │ │ ├── i18n │ │ │ └── en.js │ │ │ └── services │ │ │ └── petService.js │ ├── backend-mongodb │ │ └── src │ │ │ ├── database │ │ │ └── repositories │ │ │ │ └── bookingRepository.js │ │ │ ├── i18n │ │ │ └── en.js │ │ │ └── services │ │ │ └── petService.js │ └── backend-sql │ │ └── src │ │ ├── database │ │ └── repositories │ │ │ └── bookingRepository.js │ │ ├── i18n │ │ └── en.js │ │ └── services │ │ └── petService.js ├── 10-Pet Owners can only edit bookings at Booked status │ ├── backend-firestore │ │ └── src │ │ │ └── services │ │ │ └── bookingService.js │ ├── backend-mongodb │ │ └── src │ │ │ └── services │ │ │ └── bookingService.js │ ├── backend-sql │ │ └── src │ │ │ └── services │ │ │ └── bookingService.js │ └── frontend │ │ └── src │ │ ├── modules │ │ └── booking │ │ │ └── bookingSelectors.js │ │ └── view │ │ └── booking │ │ ├── form │ │ └── BookingForm.js │ │ ├── list │ │ └── BookingListTable.js │ │ └── view │ │ └── BookingViewToolbar.js ├── 11-View bookings for individual pet │ └── frontend │ │ └── src │ │ ├── modules │ │ └── pet │ │ │ └── petService.js │ │ └── view │ │ └── booking │ │ └── view │ │ └── BookingViewItem.js ├── 12-Booking Form - Owner and Pet │ ├── backend-firestore │ │ └── src │ │ │ └── services │ │ │ └── bookingService.js │ ├── backend-mongodb │ │ └── src │ │ │ └── services │ │ │ └── bookingService.js │ ├── backend-sql │ │ └── src │ │ │ └── services │ │ │ └── bookingService.js │ └── frontend │ │ └── src │ │ └── view │ │ └── booking │ │ └── form │ │ └── BookingForm.js ├── 13-Booking Form - Employees - Can only edit if status is not Cancelled or Completed │ ├── backend-firestore │ │ └── src │ │ │ └── services │ │ │ └── bookingService.js │ ├── backend-mongodb │ │ └── src │ │ │ └── services │ │ │ └── bookingService.js │ ├── backend-sql │ │ └── src │ │ │ └── services │ │ │ └── bookingService.js │ └── frontend │ │ └── src │ │ └── modules │ │ └── booking │ │ └── bookingSelectors.js ├── 14-Booking Form - Employees - Can return status to Booked │ ├── backend-firestore │ │ └── src │ │ │ └── services │ │ │ └── bookingService.js │ ├── backend-mongodb │ │ └── src │ │ │ └── services │ │ │ └── bookingService.js │ ├── backend-sql │ │ └── src │ │ │ └── services │ │ │ └── bookingService.js │ └── frontend │ │ └── src │ │ └── view │ │ └── booking │ │ └── form │ │ └── BookingForm.js ├── 15-Booking Form - Employees - Employee Notes, Photos, Cancellation Notes and Receipt │ └── frontend │ │ └── src │ │ └── view │ │ └── booking │ │ └── form │ │ └── BookingForm.js ├── 16-Booking Statuses with different colors │ └── frontend │ │ └── src │ │ ├── modules │ │ └── booking │ │ │ └── bookingStatus.js │ │ └── view │ │ └── booking │ │ ├── list │ │ └── BookingListTable.js │ │ └── view │ │ └── BookingView.js ├── 17-Manager can set daily fee and capacity │ ├── backend-firestore │ │ └── src │ │ │ ├── api │ │ │ └── settings │ │ │ │ └── types │ │ │ │ ├── settings.js │ │ │ │ └── settingsInput.js │ │ │ └── database │ │ │ └── models │ │ │ └── settings.js │ ├── backend-mongodb │ │ └── src │ │ │ ├── api │ │ │ └── settings │ │ │ │ └── types │ │ │ │ ├── settings.js │ │ │ │ └── settingsInput.js │ │ │ └── database │ │ │ └── models │ │ │ └── settings.js │ ├── backend-sql │ │ ├── migrations │ │ │ └── 201904111130-add-columns-to-settings.sql │ │ └── src │ │ │ ├── api │ │ │ └── settings │ │ │ │ └── types │ │ │ │ ├── settings.js │ │ │ │ └── settingsInput.js │ │ │ └── database │ │ │ └── models │ │ │ └── settings.js │ └── src │ │ ├── i18n │ │ └── en.js │ │ ├── modules │ │ └── settings │ │ │ ├── settingsModel.js │ │ │ └── settingsService.js │ │ └── view │ │ └── settings │ │ └── SettingsForm.js ├── 18-Booking Arrival and Departure unifed as Period │ ├── backend-firestore │ │ └── src │ │ │ ├── i18n │ │ │ └── en.js │ │ │ └── services │ │ │ └── bookingService.js │ ├── backend-mongodb │ │ └── src │ │ │ ├── i18n │ │ │ └── en.js │ │ │ └── services │ │ │ └── bookingService.js │ ├── backend-sql │ │ └── src │ │ │ ├── i18n │ │ │ └── en.js │ │ │ └── services │ │ │ └── bookingService.js │ └── frontend │ │ └── src │ │ ├── i18n │ │ └── en.js │ │ ├── modules │ │ ├── bookingModel.js │ │ └── bookingPeriodField.js │ │ └── view │ │ └── booking │ │ └── form │ │ └── BookingForm.js ├── 19-Validate Pet Hotel not full at period │ ├── backend-firestore │ │ └── src │ │ │ ├── api │ │ │ └── booking │ │ │ │ └── queries │ │ │ │ ├── bookingPeriodAvailable.js │ │ │ │ └── index.js │ │ │ ├── database │ │ │ └── repositories │ │ │ │ └── bookingRepository.js │ │ │ ├── i18n │ │ │ └── en.js │ │ │ └── services │ │ │ └── bookingService.js │ ├── backend-mongodb │ │ └── src │ │ │ ├── api │ │ │ └── booking │ │ │ │ └── queries │ │ │ │ ├── bookingPeriodAvailable.js │ │ │ │ └── index.js │ │ │ ├── database │ │ │ └── repositories │ │ │ │ └── bookingRepository.js │ │ │ ├── i18n │ │ │ └── en.js │ │ │ └── services │ │ │ └── bookingService.js │ ├── backend-sql │ │ └── src │ │ │ ├── api │ │ │ └── booking │ │ │ │ └── queries │ │ │ │ ├── bookingPeriodAvailable.js │ │ │ │ └── index.js │ │ │ ├── database │ │ │ └── repositories │ │ │ │ └── bookingRepository.js │ │ │ ├── i18n │ │ │ └── en.js │ │ │ └── services │ │ │ └── bookingService.js │ └── frontend │ │ └── src │ │ ├── i18n │ │ └── en.js │ │ ├── modules │ │ └── booking │ │ │ ├── bookingPeriodField.js │ │ │ └── bookingService.js │ │ └── view │ │ └── booking │ │ └── form │ │ └── BookingForm.js ├── 20-Filter periods using intersection │ ├── backend-firestore │ │ └── src │ │ │ ├── api │ │ │ └── booking │ │ │ │ └── types │ │ │ │ └── bookingFilterInput.js │ │ │ └── database │ │ │ ├── repositories │ │ │ └── bookingRepository.js │ │ │ └── utils │ │ │ └── firebaseQuery.js │ ├── backend-mongodb │ │ └── src │ │ │ ├── api │ │ │ └── booking │ │ │ │ └── types │ │ │ │ └── bookingFilterInput.js │ │ │ └── database │ │ │ ├── repositories │ │ │ └── bookingRepository.js │ │ │ └── utils │ │ │ └── mongooseQuery.js │ ├── backend-sql │ │ └── src │ │ │ ├── api │ │ │ └── booking │ │ │ │ └── types │ │ │ │ └── bookingFilterInput.js │ │ │ └── database │ │ │ ├── repositories │ │ │ └── bookingRepository.js │ │ │ └── utils │ │ │ └── sequelizeFilter.js │ └── frontend │ │ └── src │ │ └── view │ │ └── booking │ │ └── list │ │ └── BookingListFilter.js ├── 21-Fee calculation │ ├── backend-firestore │ │ └── src │ │ │ ├── api │ │ │ └── booking │ │ │ │ ├── mutations │ │ │ │ ├── bookingCreate.js │ │ │ │ ├── bookingDestroy.js │ │ │ │ ├── bookingImport.js │ │ │ │ └── bookingUpdate.js │ │ │ │ └── queries │ │ │ │ ├── bookingAutocomplete.js │ │ │ │ ├── bookingFind.js │ │ │ │ ├── bookingList.js │ │ │ │ └── bookingPeriodAvailable.js │ │ │ └── services │ │ │ └── booking │ │ │ ├── bookingFeeCalculator.js │ │ │ └── bookingService.js │ ├── backend-mongodb │ │ └── src │ │ │ ├── api │ │ │ └── booking │ │ │ │ ├── mutations │ │ │ │ ├── bookingCreate.js │ │ │ │ ├── bookingDestroy.js │ │ │ │ ├── bookingImport.js │ │ │ │ └── bookingUpdate.js │ │ │ │ └── queries │ │ │ │ ├── bookingAutocomplete.js │ │ │ │ ├── bookingFind.js │ │ │ │ ├── bookingList.js │ │ │ │ └── bookingPeriodAvailable.js │ │ │ └── services │ │ │ └── booking │ │ │ ├── bookingFeeCalculator.js │ │ │ └── bookingService.js │ ├── backend-sql │ │ └── src │ │ │ ├── api │ │ │ └── booking │ │ │ │ ├── mutations │ │ │ │ ├── bookingCreate.js │ │ │ │ ├── bookingDestroy.js │ │ │ │ ├── bookingImport.js │ │ │ │ └── bookingUpdate.js │ │ │ │ └── queries │ │ │ │ ├── bookingAutocomplete.js │ │ │ │ ├── bookingFind.js │ │ │ │ ├── bookingList.js │ │ │ │ └── bookingPeriodAvailable.js │ │ │ └── services │ │ │ └── booking │ │ │ ├── bookingFeeCalculator.js │ │ │ └── bookingService.js │ └── frontend │ │ └── src │ │ ├── i18n │ │ └── index.js │ │ ├── modules │ │ ├── booking │ │ │ ├── bookingFeeCalculador.js │ │ │ └── bookingModel.js │ │ ├── settings │ │ │ └── settingsSelectors.js │ │ └── shared │ │ │ └── fields │ │ │ └── moneyField.js │ │ └── view │ │ ├── booking │ │ └── form │ │ │ └── BookingForm.js │ │ └── shared │ │ ├── form │ │ └── items │ │ │ └── ViewFormItem.js │ │ └── moneyFormatter.js ├── 22-Only Managers can register Employees and other Managers │ ├── backend-firestore │ │ └── src │ │ │ ├── api │ │ │ └── iam │ │ │ │ └── mutations │ │ │ │ ├── iamChangeStatus.js │ │ │ │ └── iamRemove.js │ │ │ ├── security │ │ │ └── permissions.js │ │ │ └── services │ │ │ └── iam │ │ │ ├── iamCreator.js │ │ │ └── iamEditor.js │ ├── backend-mongodb │ │ └── src │ │ │ ├── api │ │ │ └── iam │ │ │ │ └── mutations │ │ │ │ ├── iamChangeStatus.js │ │ │ │ └── iamRemove.js │ │ │ ├── security │ │ │ └── permissions.js │ │ │ └── services │ │ │ └── iam │ │ │ ├── iamCreator.js │ │ │ └── iamEditor.js │ ├── backend-sql │ │ └── src │ │ │ ├── api │ │ │ └── iam │ │ │ │ └── mutations │ │ │ │ ├── iamChangeStatus.js │ │ │ │ └── iamRemove.js │ │ │ ├── security │ │ │ └── permissions.js │ │ │ └── services │ │ │ └── iam │ │ │ ├── iamCreator.js │ │ │ └── iamEditor.js │ └── frontend │ │ └── src │ │ ├── modules │ │ └── iam │ │ │ └── iamSelectors.js │ │ ├── security │ │ └── permissions.js │ │ └── view │ │ └── iam │ │ ├── edit │ │ └── IamEditForm.js │ │ ├── list │ │ ├── roles │ │ │ ├── IamRolesTable.js │ │ │ └── IamRolesToolbar.js │ │ └── users │ │ │ ├── IamUsersTable.js │ │ │ └── IamUsersToolbar.js │ │ ├── new │ │ └── IamNewForm.js │ │ └── view │ │ ├── IamViewPage.js │ │ └── IamViewToolbar.js ├── 23-Sending photos and notes via email to the pet owners │ ├── backend-firestore │ │ └── src │ │ │ ├── emails │ │ │ └── bookingUpdateEmail.js │ │ │ ├── i18n │ │ │ └── en.js │ │ │ └── services │ │ │ └── booking │ │ │ └── bookingService.js │ ├── backend-mongodb │ │ └── src │ │ │ ├── emails │ │ │ └── bookingUpdateEmail.js │ │ │ ├── i18n │ │ │ └── en.js │ │ │ └── services │ │ │ └── booking │ │ │ └── bookingService.js │ └── backend-sql │ │ └── src │ │ ├── emails │ │ └── bookingUpdateEmail.js │ │ ├── i18n │ │ └── en.js │ │ └── services │ │ └── booking │ │ └── bookingService.js └── 24-Internationalization │ ├── backend-firestore │ └── src │ │ └── i18n │ │ └── pt-BR.js │ ├── backend-mongodb │ └── src │ │ └── i18n │ │ └── pt-BR.js │ ├── backend-sql │ └── src │ │ └── i18n │ │ └── pt-BR.js │ └── frontend │ └── src │ └── i18n │ └── pt-BR.js └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /1-Project/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/.firebaserc -------------------------------------------------------------------------------- /1-Project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/.gitignore -------------------------------------------------------------------------------- /1-Project/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/LICENSE -------------------------------------------------------------------------------- /1-Project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/README.md -------------------------------------------------------------------------------- /1-Project/backend-firestore/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | /service-accounts/*.json 3 | /data -------------------------------------------------------------------------------- /1-Project/backend-firestore/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/.prettierrc -------------------------------------------------------------------------------- /1-Project/backend-firestore/.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/.runtimeconfig.json -------------------------------------------------------------------------------- /1-Project/backend-firestore/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/.vscode/launch.json -------------------------------------------------------------------------------- /1-Project/backend-firestore/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/.vscode/settings.json -------------------------------------------------------------------------------- /1-Project/backend-firestore/app-engine.development.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/app-engine.development.yaml -------------------------------------------------------------------------------- /1-Project/backend-firestore/app-engine.production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/app-engine.production.yaml -------------------------------------------------------------------------------- /1-Project/backend-firestore/config/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/config/development.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/config/index.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/config/localhost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/config/localhost.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/config/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/config/production.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/config/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/config/test.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/index.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/package.json -------------------------------------------------------------------------------- /1-Project/backend-firestore/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/server.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/service-accounts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/__fixtures__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/__fixtures__/index.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/__mocks__/nodemailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/__mocks__/nodemailer.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/auditLog/mutations/index.js: -------------------------------------------------------------------------------- 1 | module.exports = []; 2 | -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/auditLog/queries/index.js: -------------------------------------------------------------------------------- 1 | module.exports = [require('./auditLogList')]; 2 | -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/auth/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/auth/queries/index.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/auth/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/auth/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/auth/types/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/auth/types/user.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/iam/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/iam/queries/index.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/iam/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/iam/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/index.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/pet/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/pet/queries/index.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/pet/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/pet/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/pet/types/pet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/pet/types/pet.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/pet/types/petEnums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/pet/types/petEnums.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/pet/types/petInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/pet/types/petInput.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/pet/types/petPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/pet/types/petPage.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/resolvers.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/schema.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/settings/mutations/index.js: -------------------------------------------------------------------------------- 1 | module.exports = [require('./settingsSave')]; 2 | -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/settings/queries/index.js: -------------------------------------------------------------------------------- 1 | module.exports = [require('./settingsFind')]; 2 | -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/shared/types/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/shared/types/file.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/shared/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/shared/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/shared/types/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/shared/types/json.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/api/shared/types/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/api/shared/types/time.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/auth/authMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/auth/authMiddleware.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/auth/authService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/auth/authService.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/database/database.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/database/databaseInit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/database/databaseInit.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/database/models/pet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/database/models/pet.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/database/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/database/models/user.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/emails/invitationEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/emails/invitationEmail.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/errors/forbiddenError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/errors/forbiddenError.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/errors/validationError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/errors/validationError.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/external/nodemailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/external/nodemailer.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/i18n/en.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/i18n/index.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/i18n/pt-BR.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/security/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/security/permissions.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/security/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/security/roles.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/services/iam/iamEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/services/iam/iamEditor.js -------------------------------------------------------------------------------- /1-Project/backend-firestore/src/services/petService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-firestore/src/services/petService.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | /service-accounts/*.json 3 | /data -------------------------------------------------------------------------------- /1-Project/backend-mongodb/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/.prettierrc -------------------------------------------------------------------------------- /1-Project/backend-mongodb/.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/.runtimeconfig.json -------------------------------------------------------------------------------- /1-Project/backend-mongodb/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/.vscode/launch.json -------------------------------------------------------------------------------- /1-Project/backend-mongodb/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/.vscode/settings.json -------------------------------------------------------------------------------- /1-Project/backend-mongodb/app-engine.development.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/app-engine.development.yaml -------------------------------------------------------------------------------- /1-Project/backend-mongodb/app-engine.production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/app-engine.production.yaml -------------------------------------------------------------------------------- /1-Project/backend-mongodb/config/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/config/development.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/config/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/config/localhost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/config/localhost.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/config/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/config/production.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/config/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/config/test.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/package.json -------------------------------------------------------------------------------- /1-Project/backend-mongodb/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/server.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/service-accounts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/__fixtures__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/__fixtures__/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/__fixtures__/petFixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/__fixtures__/petFixture.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/__fixtures__/userFixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/__fixtures__/userFixture.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/__mocks__/firebase-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/__mocks__/firebase-admin.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/__mocks__/nodemailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/__mocks__/nodemailer.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/auditLog/mutations/index.js: -------------------------------------------------------------------------------- 1 | module.exports = []; 2 | -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/auditLog/queries/index.js: -------------------------------------------------------------------------------- 1 | module.exports = [require('./auditLogList')]; 2 | -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/auditLog/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/auditLog/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/auth/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/auth/mutations/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/auth/queries/authMe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/auth/queries/authMe.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/auth/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/auth/queries/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/auth/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/auth/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/auth/types/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/auth/types/user.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/booking/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/booking/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/iam/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/iam/mutations/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/iam/queries/iamFind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/iam/queries/iamFind.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/iam/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/iam/queries/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/iam/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/iam/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/pet/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/pet/mutations/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/pet/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/pet/queries/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/pet/queries/petFind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/pet/queries/petFind.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/pet/queries/petList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/pet/queries/petList.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/pet/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/pet/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/pet/types/pet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/pet/types/pet.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/pet/types/petEnums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/pet/types/petEnums.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/pet/types/petInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/pet/types/petInput.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/pet/types/petPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/pet/types/petPage.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/resolvers.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/schema.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/settings/mutations/index.js: -------------------------------------------------------------------------------- 1 | module.exports = [require('./settingsSave')]; 2 | -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/settings/queries/index.js: -------------------------------------------------------------------------------- 1 | module.exports = [require('./settingsFind')]; 2 | -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/settings/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/settings/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/shared/types/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/shared/types/file.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/shared/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/shared/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/shared/types/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/shared/types/json.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/api/shared/types/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/api/shared/types/time.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/auth/authMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/auth/authMiddleware.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/auth/authService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/auth/authService.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/database/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/database/database.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/database/databaseInit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/database/databaseInit.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/database/models/auditLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/database/models/auditLog.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/database/models/booking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/database/models/booking.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/database/models/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/database/models/file.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/database/models/pet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/database/models/pet.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/database/models/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/database/models/settings.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/database/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/database/models/user.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/emails/invitationEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/emails/invitationEmail.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/errors/forbiddenError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/errors/forbiddenError.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/errors/validationError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/errors/validationError.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/external/firebase-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/external/firebase-admin.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/external/nodemailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/external/nodemailer.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/i18n/en.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/i18n/index.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/i18n/pt-BR.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/security/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/security/permissions.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/security/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/security/roles.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/services/bookingService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/services/bookingService.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/services/iam/iamCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/services/iam/iamCreator.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/services/iam/iamEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/services/iam/iamEditor.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/services/iam/iamImporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/services/iam/iamImporter.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/services/iam/iamRemover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/services/iam/iamRemover.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/services/petService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/services/petService.js -------------------------------------------------------------------------------- /1-Project/backend-mongodb/src/services/settingsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-mongodb/src/services/settingsService.js -------------------------------------------------------------------------------- /1-Project/backend-sql/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | /service-accounts/*.json 3 | /data -------------------------------------------------------------------------------- /1-Project/backend-sql/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/.prettierrc -------------------------------------------------------------------------------- /1-Project/backend-sql/.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/.runtimeconfig.json -------------------------------------------------------------------------------- /1-Project/backend-sql/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/.vscode/launch.json -------------------------------------------------------------------------------- /1-Project/backend-sql/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/.vscode/settings.json -------------------------------------------------------------------------------- /1-Project/backend-sql/app-engine.development.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/app-engine.development.yaml -------------------------------------------------------------------------------- /1-Project/backend-sql/app-engine.production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/app-engine.production.yaml -------------------------------------------------------------------------------- /1-Project/backend-sql/config/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/config/development.js -------------------------------------------------------------------------------- /1-Project/backend-sql/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/config/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/config/localhost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/config/localhost.js -------------------------------------------------------------------------------- /1-Project/backend-sql/config/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/config/production.js -------------------------------------------------------------------------------- /1-Project/backend-sql/config/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/config/test.js -------------------------------------------------------------------------------- /1-Project/backend-sql/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/migrations/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/migrations/reset.js -------------------------------------------------------------------------------- /1-Project/backend-sql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/package.json -------------------------------------------------------------------------------- /1-Project/backend-sql/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/server.js -------------------------------------------------------------------------------- /1-Project/backend-sql/service-accounts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1-Project/backend-sql/src/__fixtures__/bookingFixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/__fixtures__/bookingFixture.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/__fixtures__/genericFixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/__fixtures__/genericFixture.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/__fixtures__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/__fixtures__/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/__fixtures__/petFixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/__fixtures__/petFixture.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/__fixtures__/userFixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/__fixtures__/userFixture.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/__mocks__/firebase-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/__mocks__/firebase-admin.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/__mocks__/nodemailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/__mocks__/nodemailer.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/auditLog/mutations/index.js: -------------------------------------------------------------------------------- 1 | module.exports = []; 2 | -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/auditLog/queries/index.js: -------------------------------------------------------------------------------- 1 | module.exports = [require('./auditLogList')]; 2 | -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/auditLog/types/auditLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/auditLog/types/auditLog.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/auditLog/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/auditLog/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/auth/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/auth/mutations/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/auth/queries/authMe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/auth/queries/authMe.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/auth/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/auth/queries/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/auth/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/auth/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/auth/types/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/auth/types/user.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/auth/types/userWithRoles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/auth/types/userWithRoles.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/booking/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/booking/mutations/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/booking/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/booking/queries/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/booking/types/booking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/booking/types/booking.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/booking/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/booking/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/iam/mutations/iamCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/iam/mutations/iamCreate.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/iam/mutations/iamEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/iam/mutations/iamEdit.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/iam/mutations/iamImport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/iam/mutations/iamImport.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/iam/mutations/iamRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/iam/mutations/iamRemove.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/iam/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/iam/mutations/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/iam/queries/iamFind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/iam/queries/iamFind.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/iam/queries/iamListRoles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/iam/queries/iamListRoles.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/iam/queries/iamListUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/iam/queries/iamListUsers.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/iam/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/iam/queries/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/iam/types/iamCreateInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/iam/types/iamCreateInput.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/iam/types/iamEditInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/iam/types/iamEditInput.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/iam/types/iamImportInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/iam/types/iamImportInput.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/iam/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/iam/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/iam/types/roleWithUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/iam/types/roleWithUsers.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/pet/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/pet/mutations/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/pet/mutations/petCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/pet/mutations/petCreate.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/pet/mutations/petDestroy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/pet/mutations/petDestroy.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/pet/mutations/petImport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/pet/mutations/petImport.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/pet/mutations/petUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/pet/mutations/petUpdate.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/pet/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/pet/queries/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/pet/queries/petFind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/pet/queries/petFind.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/pet/queries/petList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/pet/queries/petList.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/pet/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/pet/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/pet/types/pet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/pet/types/pet.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/pet/types/petEnums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/pet/types/petEnums.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/pet/types/petFilterInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/pet/types/petFilterInput.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/pet/types/petInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/pet/types/petInput.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/pet/types/petOrderByEnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/pet/types/petOrderByEnum.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/pet/types/petPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/pet/types/petPage.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/resolvers.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/schema.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/settings/mutations/index.js: -------------------------------------------------------------------------------- 1 | module.exports = [require('./settingsSave')]; 2 | -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/settings/queries/index.js: -------------------------------------------------------------------------------- 1 | module.exports = [require('./settingsFind')]; 2 | -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/settings/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/settings/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/settings/types/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/settings/types/settings.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/shared/types/dateTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/shared/types/dateTime.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/shared/types/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/shared/types/file.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/shared/types/fileInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/shared/types/fileInput.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/shared/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/shared/types/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/shared/types/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/shared/types/json.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/shared/types/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/shared/types/time.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/api/shared/utils/testRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/api/shared/utils/testRequest.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/auth/authMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/auth/authMiddleware.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/auth/authService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/auth/authService.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/database/database.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1-Project/backend-sql/src/database/databaseInit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/database/databaseInit.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/database/models/auditLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/database/models/auditLog.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/database/models/booking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/database/models/booking.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/database/models/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/database/models/file.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/database/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/database/models/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/database/models/pet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/database/models/pet.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/database/models/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/database/models/settings.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/database/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/database/models/user.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/database/models/userRole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/database/models/userRole.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/emails/invitationEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/emails/invitationEmail.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/emails/passwordResetEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/emails/passwordResetEmail.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/errors/forbiddenError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/errors/forbiddenError.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/errors/validationError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/errors/validationError.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/external/firebase-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/external/firebase-admin.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/external/nodemailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/external/nodemailer.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/i18n/en.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/i18n/index.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/i18n/pt-BR.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/security/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/security/permissions.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/security/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/security/roles.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/services/auth/authUserWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/services/auth/authUserWriter.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/services/bookingService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/services/bookingService.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/services/iam/iamCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/services/iam/iamCreator.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/services/iam/iamEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/services/iam/iamEditor.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/services/iam/iamImporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/services/iam/iamImporter.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/services/iam/iamRemover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/services/iam/iamRemover.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/services/petService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/services/petService.js -------------------------------------------------------------------------------- /1-Project/backend-sql/src/services/settingsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/backend-sql/src/services/settingsService.js -------------------------------------------------------------------------------- /1-Project/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/firebase.json -------------------------------------------------------------------------------- /1-Project/frontend/.env: -------------------------------------------------------------------------------- 1 | NODE_PATH=src/ 2 | BROWSER=false -------------------------------------------------------------------------------- /1-Project/frontend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ -------------------------------------------------------------------------------- /1-Project/frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/.prettierrc -------------------------------------------------------------------------------- /1-Project/frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/.vscode/settings.json -------------------------------------------------------------------------------- /1-Project/frontend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/jsconfig.json -------------------------------------------------------------------------------- /1-Project/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/package.json -------------------------------------------------------------------------------- /1-Project/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/favicon.ico -------------------------------------------------------------------------------- /1-Project/frontend/public/images/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/403.svg -------------------------------------------------------------------------------- /1-Project/frontend/public/images/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/404.svg -------------------------------------------------------------------------------- /1-Project/frontend/public/images/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/500.svg -------------------------------------------------------------------------------- /1-Project/frontend/public/images/emailUnverified.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/emailUnverified.jpg -------------------------------------------------------------------------------- /1-Project/frontend/public/images/emptyPermissions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/emptyPermissions.jpg -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Abkhazia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Abkhazia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Afghanistan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Afghanistan.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Aland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Aland.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Albania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Albania.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Algeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Algeria.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Andorra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Andorra.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Angola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Angola.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Anguilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Anguilla.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Antarctica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Antarctica.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Argentina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Argentina.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Armenia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Armenia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Aruba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Aruba.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Australia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Australia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Austria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Austria.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Azerbaijan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Azerbaijan.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Bahamas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Bahamas.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Bahrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Bahrain.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Bangladesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Bangladesh.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Barbados.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Barbados.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Belarus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Belarus.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Belgium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Belgium.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Belize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Belize.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Benin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Benin.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Bermuda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Bermuda.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Bhutan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Bhutan.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Bolivia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Bolivia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Botswana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Botswana.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Brazil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Brazil.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Brunei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Brunei.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Bulgaria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Bulgaria.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Burundi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Burundi.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Cambodia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Cambodia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Cameroon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Cameroon.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Canada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Canada.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Cape-Verde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Cape-Verde.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Catalonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Catalonia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Chad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Chad.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Chile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Chile.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/China.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/China.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Colombia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Colombia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Comoros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Comoros.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Costa-Rica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Costa-Rica.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Croatia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Croatia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Cuba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Cuba.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Curacao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Curacao.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Cyprus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Cyprus.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Denmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Denmark.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Djibouti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Djibouti.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Dominica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Dominica.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/East-Timor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/East-Timor.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Ecuador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Ecuador.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Egypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Egypt.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/El-Salvador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/El-Salvador.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/England.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/England.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Eritrea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Eritrea.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Estonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Estonia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Ethiopia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Ethiopia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Faroes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Faroes.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Fiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Fiji.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Finland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Finland.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/France.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/France.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Gabon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Gabon.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Gambia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Gambia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Georgia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Georgia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Germany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Germany.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Ghana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Ghana.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Gibraltar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Gibraltar.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Greece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Greece.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Grenada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Grenada.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Guam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Guam.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Guernsey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Guernsey.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Guinea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Guinea.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Guyana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Guyana.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Haiti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Haiti.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Honduras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Honduras.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Hungary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Hungary.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Iceland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Iceland.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/India.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Iran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Iran.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Iraq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Iraq.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Ireland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Ireland.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Israel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Israel.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Italy.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Jamaica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Jamaica.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Japan.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Jersey.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Jordan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Jordan.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Kenya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Kenya.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Kiribati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Kiribati.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Kosovo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Kosovo.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Kuwait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Kuwait.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Laos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Laos.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Latvia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Latvia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Lebanon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Lebanon.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Lesotho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Lesotho.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Liberia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Liberia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Libya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Libya.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Macau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Macau.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Malawi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Malawi.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Malaysia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Malaysia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Maldives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Maldives.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Mali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Mali.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Malta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Malta.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Mars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Mars.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Mayotte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Mayotte.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Mexico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Mexico.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Moldova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Moldova.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Monaco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Monaco.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Mongolia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Mongolia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Morocco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Morocco.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Myanmar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Myanmar.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/NATO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/NATO.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Namibia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Namibia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Nauru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Nauru.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Nepal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Nepal.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Niger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Niger.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Nigeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Nigeria.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Niue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Niue.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Norway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Norway.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Olympics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Olympics.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Oman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Oman.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Pakistan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Pakistan.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Palau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Palau.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Panama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Panama.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Paraguay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Paraguay.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Peru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Peru.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Poland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Poland.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Portugal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Portugal.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Qatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Qatar.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Reunion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Reunion.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Romania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Romania.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Russia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Russia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Rwanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Rwanda.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Samoa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Samoa.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Scotland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Scotland.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Senegal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Senegal.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Serbia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Serbia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Slovakia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Slovakia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Slovenia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Slovenia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Somalia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Somalia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Spain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Spain.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Sudan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Sudan.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Suriname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Suriname.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Sweden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Sweden.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Syria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Syria.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Taiwan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Taiwan.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Tanzania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Tanzania.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Thailand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Thailand.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Togo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Togo.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Tokelau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Tokelau.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Tonga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Tonga.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Tunisia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Tunisia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Turkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Turkey.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Tuvalu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Tuvalu.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Uganda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Uganda.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Ukraine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Ukraine.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Unknown.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Uruguay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Uruguay.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Vanuatu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Vanuatu.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Vietnam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Vietnam.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Wales.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Yemen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Yemen.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Zambia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Zambia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/16/Zimbabwe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/16/Zimbabwe.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Abkhazia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Abkhazia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Aland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Aland.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Albania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Albania.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Algeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Algeria.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Andorra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Andorra.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Angola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Angola.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Anguilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Anguilla.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Armenia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Armenia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Aruba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Aruba.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Austria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Austria.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Bahamas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Bahamas.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Bahrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Bahrain.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Barbados.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Barbados.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Belarus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Belarus.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Belgium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Belgium.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Belize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Belize.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Benin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Benin.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Bermuda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Bermuda.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Bhutan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Bhutan.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Bolivia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Bolivia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Botswana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Botswana.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Brazil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Brazil.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Brunei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Brunei.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Bulgaria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Bulgaria.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Burundi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Burundi.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Cambodia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Cambodia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Cameroon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Cameroon.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Canada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Canada.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Chad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Chad.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Chile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Chile.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/China.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/China.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Colombia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Colombia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Comoros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Comoros.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Croatia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Croatia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Cuba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Cuba.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Curacao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Curacao.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Cyprus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Cyprus.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Denmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Denmark.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Djibouti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Djibouti.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Dominica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Dominica.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Ecuador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Ecuador.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Egypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Egypt.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/England.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/England.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Eritrea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Eritrea.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Estonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Estonia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Ethiopia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Ethiopia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Faroes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Faroes.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Fiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Fiji.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Finland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Finland.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/France.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/France.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Gabon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Gabon.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Gambia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Gambia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Georgia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Georgia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Germany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Germany.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Ghana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Ghana.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Greece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Greece.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Grenada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Grenada.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Guam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Guam.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Guernsey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Guernsey.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Guinea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Guinea.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Guyana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Guyana.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Haiti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Haiti.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Honduras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Honduras.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Hungary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Hungary.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Iceland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Iceland.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/India.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Iran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Iran.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Iraq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Iraq.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Ireland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Ireland.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Israel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Israel.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Italy.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Jamaica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Jamaica.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Japan.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Jersey.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Jordan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Jordan.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Kenya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Kenya.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Kiribati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Kiribati.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Kosovo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Kosovo.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Kuwait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Kuwait.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Laos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Laos.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Latvia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Latvia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Lebanon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Lebanon.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Lesotho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Lesotho.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Liberia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Liberia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Libya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Libya.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Macau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Macau.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Malawi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Malawi.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Malaysia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Malaysia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Maldives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Maldives.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Mali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Mali.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Malta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Malta.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Mars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Mars.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Mayotte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Mayotte.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Mexico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Mexico.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Moldova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Moldova.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Monaco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Monaco.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Mongolia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Mongolia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Morocco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Morocco.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Myanmar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Myanmar.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/NATO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/NATO.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Namibia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Namibia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Nauru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Nauru.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Nepal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Nepal.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Niger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Niger.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Nigeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Nigeria.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Niue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Niue.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Norway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Norway.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Olympics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Olympics.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Oman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Oman.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Pakistan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Pakistan.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Palau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Palau.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Panama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Panama.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Paraguay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Paraguay.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Peru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Peru.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Poland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Poland.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Portugal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Portugal.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Qatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Qatar.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Reunion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Reunion.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Romania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Romania.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Russia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Russia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Rwanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Rwanda.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Samoa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Samoa.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Scotland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Scotland.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Senegal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Senegal.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Serbia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Serbia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Slovakia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Slovakia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Slovenia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Slovenia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Somalia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Somalia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Spain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Spain.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Sudan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Sudan.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Suriname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Suriname.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Sweden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Sweden.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Syria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Syria.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Taiwan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Taiwan.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Tanzania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Tanzania.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Thailand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Thailand.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Togo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Togo.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Tokelau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Tokelau.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Tonga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Tonga.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Tunisia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Tunisia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Turkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Turkey.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Tuvalu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Tuvalu.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Uganda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Uganda.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Ukraine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Ukraine.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Unknown.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Uruguay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Uruguay.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Vanuatu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Vanuatu.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Vietnam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Vietnam.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Wales.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Yemen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Yemen.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Zambia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Zambia.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/flags/24/Zimbabwe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/flags/24/Zimbabwe.png -------------------------------------------------------------------------------- /1-Project/frontend/public/images/forgotPassword.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/forgotPassword.jpg -------------------------------------------------------------------------------- /1-Project/frontend/public/images/signin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/signin.jpg -------------------------------------------------------------------------------- /1-Project/frontend/public/images/signup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/images/signup.jpg -------------------------------------------------------------------------------- /1-Project/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/index.html -------------------------------------------------------------------------------- /1-Project/frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/manifest.json -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/dist/cyan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/dist/cyan.css -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/dist/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/dist/default.css -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/dist/geek-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/dist/geek-blue.css -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/dist/gold.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/dist/gold.css -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/dist/lime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/dist/lime.css -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/dist/magenta.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/dist/magenta.css -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/dist/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/dist/orange.css -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/dist/polar-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/dist/polar-green.css -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/dist/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/dist/purple.css -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/dist/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/dist/red.css -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/dist/volcano.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/dist/volcano.css -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/dist/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/dist/yellow.css -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/src/cyan.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/src/cyan.less -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/src/default.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/src/default.less -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/src/geek-blue.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/src/geek-blue.less -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/src/gold.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/src/gold.less -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/src/index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/src/index.sh -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/src/lime.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/src/lime.less -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/src/magenta.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/src/magenta.less -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/src/orange.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/src/orange.less -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/src/polar-green.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/src/polar-green.less -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/src/purple.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/src/purple.less -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/src/red.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/src/red.less -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/src/volcano.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/src/volcano.less -------------------------------------------------------------------------------- /1-Project/frontend/public/theme/src/yellow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/public/theme/src/yellow.less -------------------------------------------------------------------------------- /1-Project/frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/App.js -------------------------------------------------------------------------------- /1-Project/frontend/src/config/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/config/development.js -------------------------------------------------------------------------------- /1-Project/frontend/src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/config/index.js -------------------------------------------------------------------------------- /1-Project/frontend/src/config/localhost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/config/localhost.js -------------------------------------------------------------------------------- /1-Project/frontend/src/config/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/config/production.js -------------------------------------------------------------------------------- /1-Project/frontend/src/config/testenv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/config/testenv.js -------------------------------------------------------------------------------- /1-Project/frontend/src/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/i18n/en.js -------------------------------------------------------------------------------- /1-Project/frontend/src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/i18n/index.js -------------------------------------------------------------------------------- /1-Project/frontend/src/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/i18n/pt-BR.js -------------------------------------------------------------------------------- /1-Project/frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/index.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/auth/authActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/auth/authActions.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/auth/authInitializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/auth/authInitializer.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/auth/authReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/auth/authReducers.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/auth/authSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/auth/authSelectors.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/auth/authService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/auth/authService.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/auth/userModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/auth/userModel.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/booking/bookingModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/booking/bookingModel.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/iam/iamReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/iam/iamReducers.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/iam/iamSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/iam/iamSelectors.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/iam/iamService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/iam/iamService.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/initializers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/initializers.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/layout/layoutActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/layout/layoutActions.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/pet/petModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/pet/petModel.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/pet/petReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/pet/petReducers.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/pet/petSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/pet/petSelectors.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/pet/petService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/pet/petService.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/reducers.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/shared/error/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/shared/error/errors.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/shared/excel/excel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/shared/excel/excel.js -------------------------------------------------------------------------------- /1-Project/frontend/src/modules/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/modules/store.js -------------------------------------------------------------------------------- /1-Project/frontend/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/registerServiceWorker.js -------------------------------------------------------------------------------- /1-Project/frontend/src/security/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/security/permissions.js -------------------------------------------------------------------------------- /1-Project/frontend/src/security/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/security/roles.js -------------------------------------------------------------------------------- /1-Project/frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/setupTests.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/auditLog/AuditLogFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/auditLog/AuditLogFilter.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/auditLog/AuditLogPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/auditLog/AuditLogPage.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/auditLog/AuditLogTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/auditLog/AuditLogTable.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/auth/ForgotPasswordPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/auth/ForgotPasswordPage.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/auth/ProfileForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/auth/ProfileForm.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/auth/ProfileFormPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/auth/ProfileFormPage.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/auth/SigninPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/auth/SigninPage.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/auth/SignupPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/auth/SignupPage.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/auth/styles/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/auth/styles/Content.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/auth/styles/Logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/auth/styles/Logo.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/auth/styles/Wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/auth/styles/Wrapper.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/home/HomeBarChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/home/HomeBarChart.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/home/HomeDoughnutChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/home/HomeDoughnutChart.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/home/HomeLineChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/home/HomeLineChart.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/home/HomeMixChartOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/home/HomeMixChartOne.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/home/HomeMixChartTwo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/home/HomeMixChartTwo.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/home/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/home/HomePage.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/home/HomePolarChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/home/HomePolarChart.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/home/HomeRadarChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/home/HomeRadarChart.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/iam/edit/IamEditForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/iam/edit/IamEditForm.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/iam/edit/IamEditPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/iam/edit/IamEditPage.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/iam/list/IamFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/iam/list/IamFilter.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/iam/list/IamPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/iam/list/IamPage.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/iam/list/IamTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/iam/list/IamTable.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/iam/list/IamToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/iam/list/IamToolbar.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/iam/list/IamViewBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/iam/list/IamViewBy.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/iam/new/IamNewForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/iam/new/IamNewForm.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/iam/new/IamNewPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/iam/new/IamNewPage.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/iam/view/IamView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/iam/view/IamView.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/iam/view/IamViewPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/iam/view/IamViewPage.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/iam/view/IamViewToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/iam/view/IamViewToolbar.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/iam/view/UserViewItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/iam/view/UserViewItem.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/layout/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/layout/Header.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/layout/I18nFlags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/layout/I18nFlags.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/layout/I18nSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/layout/I18nSelect.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/layout/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/layout/Layout.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/layout/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/layout/Menu.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/pet/form/PetForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/pet/form/PetForm.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/pet/form/PetFormPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/pet/form/PetFormPage.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/pet/list/PetListFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/pet/list/PetListFilter.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/pet/list/PetListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/pet/list/PetListItem.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/pet/list/PetListPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/pet/list/PetListPage.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/pet/list/PetListTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/pet/list/PetListTable.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/pet/list/PetListToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/pet/list/PetListToolbar.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/pet/view/PetView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/pet/view/PetView.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/pet/view/PetViewItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/pet/view/PetViewItem.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/pet/view/PetViewPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/pet/view/PetViewPage.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/pet/view/PetViewToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/pet/view/PetViewToolbar.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/routes.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/settings/SettingsForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/settings/SettingsForm.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/shared/Breadcrumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/shared/Breadcrumb.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/shared/CustomLoadable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/shared/CustomLoadable.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/shared/ImagesViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/shared/ImagesViewer.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/shared/JsonHighlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/shared/JsonHighlighter.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/shared/LoadingComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/shared/LoadingComponent.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/shared/ProgressBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/shared/ProgressBar.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/shared/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/shared/Spinner.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/shared/form/formErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/shared/form/formErrors.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/shared/form/formSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/shared/form/formSchema.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/shared/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/shared/message.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/shared/styles/PageTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/shared/styles/PageTitle.js -------------------------------------------------------------------------------- /1-Project/frontend/src/view/shared/styles/Toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/frontend/src/view/shared/styles/Toolbar.js -------------------------------------------------------------------------------- /1-Project/storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/1-Project/storage.rules -------------------------------------------------------------------------------- /2-Basics/1 - NodeJS and Javascript/1-basics.js: -------------------------------------------------------------------------------- 1 | console.log(1 + 1); 2 | -------------------------------------------------------------------------------- /2-Basics/1 - NodeJS and Javascript/6-npm-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/1 - NodeJS and Javascript/6-npm-modules.js -------------------------------------------------------------------------------- /2-Basics/1 - NodeJS and Javascript/7-async-await.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/1 - NodeJS and Javascript/7-async-await.js -------------------------------------------------------------------------------- /2-Basics/1 - NodeJS and Javascript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/1 - NodeJS and Javascript/package-lock.json -------------------------------------------------------------------------------- /2-Basics/1 - NodeJS and Javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/1 - NodeJS and Javascript/package.json -------------------------------------------------------------------------------- /2-Basics/2 - React/todos-completed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/2 - React/todos-completed/.gitignore -------------------------------------------------------------------------------- /2-Basics/2 - React/todos-completed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/2 - React/todos-completed/README.md -------------------------------------------------------------------------------- /2-Basics/2 - React/todos-completed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/2 - React/todos-completed/package.json -------------------------------------------------------------------------------- /2-Basics/2 - React/todos-completed/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/2 - React/todos-completed/public/favicon.ico -------------------------------------------------------------------------------- /2-Basics/2 - React/todos-completed/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/2 - React/todos-completed/public/index.html -------------------------------------------------------------------------------- /2-Basics/2 - React/todos-completed/src/TodoApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/2 - React/todos-completed/src/TodoApp.js -------------------------------------------------------------------------------- /2-Basics/2 - React/todos-completed/src/TodoForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/2 - React/todos-completed/src/TodoForm.js -------------------------------------------------------------------------------- /2-Basics/2 - React/todos-completed/src/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/2 - React/todos-completed/src/TodoList.js -------------------------------------------------------------------------------- /2-Basics/2 - React/todos-completed/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/2 - React/todos-completed/src/index.js -------------------------------------------------------------------------------- /2-Basics/2 - React/todos-completed/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/2 - React/todos-completed/yarn.lock -------------------------------------------------------------------------------- /2-Basics/4 - React Router/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/4 - React Router/link.txt -------------------------------------------------------------------------------- /2-Basics/5 - Formik and Yup/todos-completed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/5 - Formik and Yup/todos-completed/.gitignore -------------------------------------------------------------------------------- /2-Basics/5 - Formik and Yup/todos-completed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/5 - Formik and Yup/todos-completed/README.md -------------------------------------------------------------------------------- /2-Basics/5 - Formik and Yup/todos-completed/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/2-Basics/5 - Formik and Yup/todos-completed/yarn.lock -------------------------------------------------------------------------------- /3-Customization/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/3-Customization/.prettierrc -------------------------------------------------------------------------------- /3-Customization/01-I18n/backend-mongodb/src/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/3-Customization/01-I18n/backend-mongodb/src/i18n/en.js -------------------------------------------------------------------------------- /3-Customization/01-I18n/backend-sql/src/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/3-Customization/01-I18n/backend-sql/src/i18n/en.js -------------------------------------------------------------------------------- /3-Customization/01-I18n/frontend/src/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/3-Customization/01-I18n/frontend/src/i18n/en.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipepastorelima/react-pet-hotel/HEAD/README.md --------------------------------------------------------------------------------