├── .github └── workflows │ ├── clean-workflow.yaml │ ├── release-workflow.yaml │ └── test-workflow.yaml ├── .gitignore ├── .scripts └── pre-commit ├── LICENSE.txt ├── README.md ├── docs ├── database │ └── migrations │ │ ├── categories.csv │ │ ├── category_groups.csv │ │ ├── localized_units_new.csv │ │ └── unit_refs.csv └── logo_transparent.png ├── examples ├── .env.template └── docker-compose.yaml ├── gradle.properties ├── gradle ├── libs.versions.toml ├── preCommit.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src ├── main ├── docker │ ├── Dockerfile.jvm │ ├── Dockerfile.legacy-jar │ ├── Dockerfile.native │ └── Dockerfile.native-micro ├── kotlin │ └── de │ │ └── flavormate │ │ ├── configuration │ │ ├── jackson │ │ │ └── CustomObjectMapper.kt │ │ └── properties │ │ │ ├── FlavorMateProperties.kt │ │ │ ├── auth │ │ │ ├── AuthProperties.kt │ │ │ ├── jwt │ │ │ │ ├── JWTProperties.kt │ │ │ │ └── tokens │ │ │ │ │ └── TokenProperties.kt │ │ │ └── oidc │ │ │ │ └── OIDCProperties.kt │ │ │ ├── features │ │ │ └── FeatureProperties.kt │ │ │ ├── general │ │ │ ├── GeneralProperties.kt │ │ │ ├── admin │ │ │ │ └── AdminProperties.kt │ │ │ └── highlights │ │ │ │ └── HighlightsProperties.kt │ │ │ ├── paths │ │ │ └── PathsProperties.kt │ │ │ └── server │ │ │ └── ServerProperties.kt │ │ ├── core │ │ ├── auth │ │ │ ├── config │ │ │ │ ├── CustomAwareJWTAuthMechanism.kt │ │ │ │ ├── FeatureRequestFilter.kt │ │ │ │ └── JwtBlockList.kt │ │ │ ├── controllers │ │ │ │ └── AuthController.kt │ │ │ ├── models │ │ │ │ ├── LoginForm.kt │ │ │ │ ├── NoAuthenticationMechanism.kt │ │ │ │ └── TokenResponseDao.kt │ │ │ └── services │ │ │ │ ├── AuthService.kt │ │ │ │ └── AuthTokenService.kt │ │ ├── cron │ │ │ ├── AdminCron.kt │ │ │ ├── FileCron.kt │ │ │ ├── HighlightCron.kt │ │ │ ├── OIDCCron.kt │ │ │ ├── RecipeCron.kt │ │ │ ├── TagCron.kt │ │ │ └── TokenCron.kt │ │ ├── features │ │ │ ├── controller │ │ │ │ └── FeaturesController.kt │ │ │ ├── enums │ │ │ │ └── FeatureType.kt │ │ │ ├── models │ │ │ │ └── FeatureResponse.kt │ │ │ └── services │ │ │ │ └── FeaturesService.kt │ │ └── version │ │ │ └── controller │ │ │ └── FeaturesController.kt │ │ ├── exceptions │ │ ├── ExceptionDto.kt │ │ ├── ExceptionHandler.kt │ │ ├── FException.kt │ │ └── FExceptionHandler.kt │ │ ├── extensions │ │ ├── auth │ │ │ └── oidc │ │ │ │ ├── config │ │ │ │ └── OIDCProviderConfig.kt │ │ │ │ ├── controllers │ │ │ │ └── OIDCController.kt │ │ │ │ ├── dao │ │ │ │ └── models │ │ │ │ │ ├── OIDCMappingEntity.kt │ │ │ │ │ └── OIDCMappingEntityId.kt │ │ │ │ ├── dto │ │ │ │ └── models │ │ │ │ │ └── OIDCProviderDto.kt │ │ │ │ ├── repositories │ │ │ │ └── OIDCMappingRepository.kt │ │ │ │ └── services │ │ │ │ └── OIDCServices.kt │ │ ├── bring │ │ │ ├── controllers │ │ │ │ └── BringController.kt │ │ │ └── services │ │ │ │ └── BringService.kt │ │ ├── importExport │ │ │ └── ld_json │ │ │ │ ├── mappers │ │ │ │ ├── LDJsonNutritionInformationMapper.kt │ │ │ │ └── LDRecipeRecipeEntityMapper.kt │ │ │ │ ├── models │ │ │ │ ├── LDJsonCreativeWork.kt │ │ │ │ ├── LDJsonHowTo.kt │ │ │ │ ├── LDJsonRecipe.kt │ │ │ │ ├── LDJsonThing.kt │ │ │ │ └── types │ │ │ │ │ ├── LDJsonDefinedTerm.kt │ │ │ │ │ ├── LDJsonImageObject.kt │ │ │ │ │ ├── LDJsonLanguage.kt │ │ │ │ │ ├── LDJsonName.kt │ │ │ │ │ ├── LDJsonNutritionInformation.kt │ │ │ │ │ ├── LDJsonPerson.kt │ │ │ │ │ ├── LDJsonQuantitativeValue.kt │ │ │ │ │ ├── LDJsonRestrictedDiet.kt │ │ │ │ │ ├── LDJsonSchema.kt │ │ │ │ │ └── step │ │ │ │ │ ├── LDJsonHowToSection.kt │ │ │ │ │ ├── LDJsonHowToStep.kt │ │ │ │ │ └── LDJsonStep.kt │ │ │ │ ├── serializers │ │ │ │ ├── LDJsonDefinedTermDeserializer.kt │ │ │ │ ├── LDJsonDeserializer.kt │ │ │ │ ├── LDJsonImageDeserializer.kt │ │ │ │ ├── LDJsonInstantDeserializer.kt │ │ │ │ ├── LDJsonLanguageDeserializer.kt │ │ │ │ ├── LDJsonPersonDeserializer.kt │ │ │ │ ├── LDJsonRecipeYieldDeserializer.kt │ │ │ │ ├── LDJsonRestrictedDietDeserializer.kt │ │ │ │ ├── LDJsonStepDeserializer.kt │ │ │ │ └── LDJsonStringDeserializer.kt │ │ │ │ └── services │ │ │ │ ├── LDJsonIngredientService.kt │ │ │ │ ├── LDJsonInstructionService.kt │ │ │ │ └── LDJsonService.kt │ │ ├── openFoodFacts │ │ │ ├── api │ │ │ │ ├── clients │ │ │ │ │ └── OFFClient.kt │ │ │ │ ├── daos │ │ │ │ │ └── models │ │ │ │ │ │ └── OFFClientStatsEntity.kt │ │ │ │ ├── models │ │ │ │ │ ├── OpenFoodFactsNutriments.kt │ │ │ │ │ ├── OpenFoodFactsProduct.kt │ │ │ │ │ └── OpenFoodFactsResponse.kt │ │ │ │ └── repository │ │ │ │ │ └── OFFClientStatsRepository.kt │ │ │ ├── dao │ │ │ │ └── models │ │ │ │ │ └── OFFProductEntity.kt │ │ │ ├── deserializer │ │ │ │ └── OFFDoubleDeserializer.kt │ │ │ ├── enums │ │ │ │ └── OFFProductState.kt │ │ │ ├── repositories │ │ │ │ └── OFFProductRepository.kt │ │ │ └── services │ │ │ │ └── OFFService.kt │ │ ├── ratings │ │ │ ├── controllers │ │ │ │ └── RatingsController.kt │ │ │ ├── daos │ │ │ │ ├── RatingEntity.kt │ │ │ │ └── RatingEntityId.kt │ │ │ ├── dtos │ │ │ │ ├── RatingsDto.kt │ │ │ │ └── RecipeRatingFormDto.kt │ │ │ ├── repositories │ │ │ │ └── RatingsRepository.kt │ │ │ └── services │ │ │ │ ├── RatingsMutationService.kt │ │ │ │ ├── RatingsQueryService.kt │ │ │ │ └── RatingsService.kt │ │ ├── recovery │ │ │ ├── controllers │ │ │ │ └── RecoveryController.kt │ │ │ └── services │ │ │ │ └── RecoveryService.kt │ │ ├── registration │ │ │ ├── controllers │ │ │ │ └── RegistrationController.kt │ │ │ ├── models │ │ │ │ └── RegistrationForm.kt │ │ │ └── services │ │ │ │ └── RegistrationService.kt │ │ ├── scraper │ │ │ ├── controllers │ │ │ │ └── ScraperController.kt │ │ │ └── services │ │ │ │ └── ScraperService.kt │ │ ├── share │ │ │ ├── controllers │ │ │ │ └── ShareController.kt │ │ │ ├── mappers │ │ │ │ └── SharedRecipeMapper.kt │ │ │ ├── models │ │ │ │ ├── SharedIngredientGroup.kt │ │ │ │ ├── SharedInstructionGroup.kt │ │ │ │ └── SharedRecipe.kt │ │ │ └── services │ │ │ │ └── ShareService.kt │ │ └── urlShortener │ │ │ ├── controllers │ │ │ └── ShortenerController.kt │ │ │ ├── models │ │ │ └── ShortenerEntity.kt │ │ │ ├── repositories │ │ │ └── ShortenerRepository.kt │ │ │ └── services │ │ │ └── ShortenerService.kt │ │ ├── features │ │ ├── account │ │ │ ├── controllers │ │ │ │ └── AccountController.kt │ │ │ ├── dao │ │ │ │ └── models │ │ │ │ │ ├── AccountEntity.kt │ │ │ │ │ └── AccountFileEntity.kt │ │ │ ├── dtos │ │ │ │ ├── mappers │ │ │ │ │ ├── AccountFileDtoMapper.kt │ │ │ │ │ ├── AccountFullDtoMapper.kt │ │ │ │ │ └── AccountPreviewDtoMapper.kt │ │ │ │ └── models │ │ │ │ │ ├── AccountDto.kt │ │ │ │ │ ├── AccountFileDto.kt │ │ │ │ │ ├── AccountFullDto.kt │ │ │ │ │ ├── AccountPasswordFormDto.kt │ │ │ │ │ ├── AccountPreviewDto.kt │ │ │ │ │ └── AccountUpdateDto.kt │ │ │ ├── repositories │ │ │ │ ├── AccountFileRepository.kt │ │ │ │ └── AccountRepository.kt │ │ │ └── services │ │ │ │ ├── AccountQueryService.kt │ │ │ │ ├── AccountService.kt │ │ │ │ ├── file │ │ │ │ ├── AccountFileMutationService.kt │ │ │ │ ├── AccountFileQueryService.kt │ │ │ │ └── AccountFileService.kt │ │ │ │ └── id │ │ │ │ ├── AccountIdMutationService.kt │ │ │ │ ├── AccountIdQueryService.kt │ │ │ │ └── AccountIdService.kt │ │ ├── admin │ │ │ ├── controllers │ │ │ │ └── AdminController.kt │ │ │ ├── dto │ │ │ │ └── AccountForm.kt │ │ │ └── services │ │ │ │ ├── AdminMutationService.kt │ │ │ │ ├── AdminQueryService.kt │ │ │ │ └── AdminService.kt │ │ ├── book │ │ │ ├── controllers │ │ │ │ └── BookController.kt │ │ │ ├── daos │ │ │ │ └── models │ │ │ │ │ └── BookEntity.kt │ │ │ ├── dtos │ │ │ │ ├── mapper │ │ │ │ │ └── BookDtoMapper.kt │ │ │ │ └── models │ │ │ │ │ ├── BookCreateDto.kt │ │ │ │ │ ├── BookDto.kt │ │ │ │ │ └── BookUpdateDto.kt │ │ │ ├── repositories │ │ │ │ └── BookRepository.kt │ │ │ └── services │ │ │ │ ├── BookMutationService.kt │ │ │ │ ├── BookQueryService.kt │ │ │ │ ├── BookService.kt │ │ │ │ └── id │ │ │ │ ├── BookIdMutationService.kt │ │ │ │ ├── BookIdQueryService.kt │ │ │ │ └── BookIdService.kt │ │ ├── category │ │ │ ├── controllers │ │ │ │ └── CategoryController.kt │ │ │ ├── daos │ │ │ │ └── models │ │ │ │ │ ├── CategoryEntity.kt │ │ │ │ │ └── CategoryLocalizationEntity.kt │ │ │ ├── dtos │ │ │ │ ├── mappers │ │ │ │ │ └── CategoryDtoMapper.kt │ │ │ │ └── models │ │ │ │ │ └── CategoryDto.kt │ │ │ ├── repositories │ │ │ │ └── CategoryRepository.kt │ │ │ └── services │ │ │ │ ├── CategoryQueryService.kt │ │ │ │ └── CategoryService.kt │ │ ├── categoryGroup │ │ │ ├── controllers │ │ │ │ └── CategoryGroupController.kt │ │ │ ├── daos │ │ │ │ └── models │ │ │ │ │ ├── CategoryGroupEntity.kt │ │ │ │ │ └── CategoryGroupLocalizationEntity.kt │ │ │ ├── dtos │ │ │ │ ├── mappers │ │ │ │ │ └── CategoryGroupDtoMapper.kt │ │ │ │ └── models │ │ │ │ │ └── CategoryGroupDto.kt │ │ │ ├── repositories │ │ │ │ └── CategoryGroupRepository.kt │ │ │ └── services │ │ │ │ ├── CategoryGroupQueryService.kt │ │ │ │ └── CategoryGroupService.kt │ │ ├── highlight │ │ │ ├── controllers │ │ │ │ └── HighlightController.kt │ │ │ ├── daos │ │ │ │ └── models │ │ │ │ │ └── HighlightEntity.kt │ │ │ ├── dtos │ │ │ │ ├── mappers │ │ │ │ │ └── HighlightDtoMapper.kt │ │ │ │ └── models │ │ │ │ │ └── HighlightDto.kt │ │ │ ├── repositories │ │ │ │ └── HighlightRepository.kt │ │ │ └── services │ │ │ │ ├── HighlightQueryService.kt │ │ │ │ └── HighlightService.kt │ │ ├── recipe │ │ │ ├── controllers │ │ │ │ └── RecipeController.kt │ │ │ ├── daos │ │ │ │ ├── mappers │ │ │ │ │ ├── RecipeEntityRecipeDraftEntityMapper.kt │ │ │ │ │ ├── ServingEntityServingDraftEntityMapper.kt │ │ │ │ │ ├── ingredient │ │ │ │ │ │ ├── IngredientEntityIngredientDraftEntityMapper.kt │ │ │ │ │ │ └── IngredientGroupEntityIngredientGroupDraftEntityMapper.kt │ │ │ │ │ └── instruction │ │ │ │ │ │ ├── InstructionEntityInstructionDraftEntityMapper.kt │ │ │ │ │ │ └── InstructionGroupEntityInstructionGroupDraftEntityMapper.kt │ │ │ │ └── models │ │ │ │ │ ├── NutritionEntity.kt │ │ │ │ │ ├── RecipeEntity.kt │ │ │ │ │ ├── RecipeFileEntity.kt │ │ │ │ │ ├── ServingEntity.kt │ │ │ │ │ ├── ingredient │ │ │ │ │ ├── IngredientEntity.kt │ │ │ │ │ └── IngredientGroupEntity.kt │ │ │ │ │ └── instruction │ │ │ │ │ ├── InstructionEntity.kt │ │ │ │ │ └── InstructionGroupEntity.kt │ │ │ ├── dtos │ │ │ │ ├── mappers │ │ │ │ │ ├── RecipeDtoFullMapper.kt │ │ │ │ │ ├── RecipeDtoPreviewMapper.kt │ │ │ │ │ └── RecipeFileDtoPreviewMapper.kt │ │ │ │ └── models │ │ │ │ │ ├── RecipeDto.kt │ │ │ │ │ ├── RecipeDtoFull.kt │ │ │ │ │ ├── RecipeDtoPreview.kt │ │ │ │ │ ├── RecipeFileDtoPreview.kt │ │ │ │ │ ├── RecipeIngredientGroupDto.kt │ │ │ │ │ ├── RecipeIngredientGroupItemDto.kt │ │ │ │ │ ├── RecipeIngredientGroupItemNutritionDto.kt │ │ │ │ │ ├── RecipeInstructionGroupDto.kt │ │ │ │ │ ├── RecipeInstructionGroupItemDto.kt │ │ │ │ │ ├── RecipeServingDto.kt │ │ │ │ │ └── RecipeTransferDto.kt │ │ │ ├── repositories │ │ │ │ ├── RecipeFileRepository.kt │ │ │ │ ├── RecipeNutritionRepository.kt │ │ │ │ ├── RecipeRatingRepository.kt │ │ │ │ └── RecipeRepository.kt │ │ │ └── services │ │ │ │ ├── RecipeMutationService.kt │ │ │ │ ├── RecipeQueryService.kt │ │ │ │ └── RecipeService.kt │ │ ├── recipeDraft │ │ │ ├── controllers │ │ │ │ └── RecipeDraftController.kt │ │ │ ├── converters │ │ │ │ ├── IngredientGroupDraftConverter.kt │ │ │ │ ├── InstructionGroupDraftConverter.kt │ │ │ │ └── ServingConverter.kt │ │ │ ├── daos │ │ │ │ ├── mapper │ │ │ │ │ ├── IngredientDraftEntityIngredientEntityMapper.kt │ │ │ │ │ ├── IngredientGroupDraftEntityIngredientGroupEntityMapper.kt │ │ │ │ │ ├── InstructionDraftEntityInstructionEntityMapper.kt │ │ │ │ │ ├── InstructionGroupDraftEntityInstructionGroupEntityMapper.kt │ │ │ │ │ ├── NutritionDraftEntityNutritionEntityMapper.kt │ │ │ │ │ ├── RecipeDraftEntityRecipeEntityMapper.kt │ │ │ │ │ └── ServingDraftEntityServingEntityMapper.kt │ │ │ │ └── models │ │ │ │ │ ├── RecipeDraftEntity.kt │ │ │ │ │ ├── RecipeDraftFileEntity.kt │ │ │ │ │ ├── RecipeDraftIngredientGroupItemNutritionEntity.kt │ │ │ │ │ ├── RecipeDraftServingEntity.kt │ │ │ │ │ ├── ingredients │ │ │ │ │ ├── RecipeDraftIngredientGroupEntity.kt │ │ │ │ │ └── RecipeDraftIngredientGroupItemEntity.kt │ │ │ │ │ └── instructions │ │ │ │ │ ├── RecipeDraftInstructionGroupEntity.kt │ │ │ │ │ └── RecipeDraftInstructionGroupItemEntity.kt │ │ │ ├── dtos │ │ │ │ ├── mappers │ │ │ │ │ ├── RecipeDraftDtoFullMapper.kt │ │ │ │ │ ├── RecipeDraftDtoPreviewMapper.kt │ │ │ │ │ └── RecipeDraftFileEntityRecipeDraftFileDtoMapper.kt │ │ │ │ └── models │ │ │ │ │ ├── RecipeDraftDto.kt │ │ │ │ │ ├── RecipeDraftDtoFull.kt │ │ │ │ │ ├── RecipeDraftDtoPreview.kt │ │ │ │ │ ├── RecipeDraftFileDto.kt │ │ │ │ │ ├── RecipeDraftIngredientGroupDto.kt │ │ │ │ │ ├── RecipeDraftIngredientGroupItemDto.kt │ │ │ │ │ ├── RecipeDraftIngredientGroupItemNutritionDto.kt │ │ │ │ │ ├── RecipeDraftInstructionGroupDto.kt │ │ │ │ │ ├── RecipeDraftInstructionGroupItemDto.kt │ │ │ │ │ ├── RecipeDraftServingDto.kt │ │ │ │ │ └── update │ │ │ │ │ ├── RecipeDraftIngredientGroupItemNutritionUpdateDto.kt │ │ │ │ │ ├── RecipeDraftIngredientGroupItemUpdateDto.kt │ │ │ │ │ ├── RecipeDraftIngredientGroupUpdateDto.kt │ │ │ │ │ ├── RecipeDraftInstructionGroupItemUpdateDto.kt │ │ │ │ │ ├── RecipeDraftInstructionGroupUpdateDto.kt │ │ │ │ │ ├── RecipeDraftServingUpdateDto.kt │ │ │ │ │ └── RecipeDraftUpdateDto.kt │ │ │ ├── repositories │ │ │ │ ├── RecipeDraftFileRepository.kt │ │ │ │ ├── RecipeDraftIngredientGroupItemRepository.kt │ │ │ │ ├── RecipeDraftIngredientGroupRepository.kt │ │ │ │ ├── RecipeDraftInstructionGroupItemRepository.kt │ │ │ │ ├── RecipeDraftInstructionGroupRepository.kt │ │ │ │ └── RecipeDraftRepository.kt │ │ │ └── services │ │ │ │ ├── RecipeDraftMutationService.kt │ │ │ │ ├── RecipeDraftQueryService.kt │ │ │ │ ├── RecipeDraftService.kt │ │ │ │ └── file │ │ │ │ ├── RecipeDraftFileMutationService.kt │ │ │ │ ├── RecipeDraftFileQueryService.kt │ │ │ │ └── RecipeDraftFileService.kt │ │ ├── role │ │ │ ├── enums │ │ │ │ └── RoleTypes.kt │ │ │ ├── models │ │ │ │ └── RoleEntity.kt │ │ │ └── repositories │ │ │ │ └── RoleRepository.kt │ │ ├── story │ │ │ ├── controllers │ │ │ │ └── StoryController.kt │ │ │ ├── daos │ │ │ │ └── models │ │ │ │ │ └── StoryEntity.kt │ │ │ ├── dtos │ │ │ │ ├── mappers │ │ │ │ │ ├── StoryDtoFullMapper.kt │ │ │ │ │ └── StoryDtoPreviewMapper.kt │ │ │ │ └── models │ │ │ │ │ ├── StoryDto.kt │ │ │ │ │ ├── StoryDtoFull.kt │ │ │ │ │ └── StoryDtoPreview.kt │ │ │ ├── repositories │ │ │ │ └── StoryRepository.kt │ │ │ └── services │ │ │ │ ├── StoryMutationService.kt │ │ │ │ ├── StoryQueryService.kt │ │ │ │ └── StoryService.kt │ │ ├── storyDraft │ │ │ ├── controllers │ │ │ │ └── StoryDraftController.kt │ │ │ ├── converters │ │ │ │ └── StoryDraftRecipeConverter.kt │ │ │ ├── daos │ │ │ │ ├── mappers │ │ │ │ │ ├── StoryDraftEntityStoryEntityMapper.kt │ │ │ │ │ └── StoryDraftRecipeEntityRecipeEntityMapper.kt │ │ │ │ └── models │ │ │ │ │ ├── StoryDraftEntity.kt │ │ │ │ │ └── StoryDraftRecipeEntity.kt │ │ │ ├── dtos │ │ │ │ ├── mappers │ │ │ │ │ ├── StoryDraftDtoFullMapper.kt │ │ │ │ │ └── StoryDraftDtoPreviewMapper.kt │ │ │ │ └── models │ │ │ │ │ ├── StoryDraftDto.kt │ │ │ │ │ ├── StoryDraftDtoFull.kt │ │ │ │ │ ├── StoryDraftDtoPreview.kt │ │ │ │ │ └── StoryDraftUpdateDto.kt │ │ │ ├── repositories │ │ │ │ └── StoryDraftRepository.kt │ │ │ └── services │ │ │ │ ├── StoryDraftMutationService.kt │ │ │ │ ├── StoryDraftQueryService.kt │ │ │ │ └── StoryDraftService.kt │ │ ├── tag │ │ │ ├── controllers │ │ │ │ └── TagController.kt │ │ │ ├── daos │ │ │ │ └── models │ │ │ │ │ └── TagEntity.kt │ │ │ ├── dtos │ │ │ │ ├── mappers │ │ │ │ │ └── TagDtoMapper.kt │ │ │ │ └── models │ │ │ │ │ └── TagDto.kt │ │ │ ├── repositories │ │ │ │ └── TagRepository.kt │ │ │ └── services │ │ │ │ ├── TagQueryService.kt │ │ │ │ └── TagService.kt │ │ ├── token │ │ │ ├── daos │ │ │ │ └── TokenEntity.kt │ │ │ ├── enums │ │ │ │ └── TokenType.kt │ │ │ └── repositories │ │ │ │ └── TokenRepository.kt │ │ └── unit │ │ │ ├── controllers │ │ │ └── UnitController.kt │ │ │ ├── daos │ │ │ └── models │ │ │ │ ├── UnitConversionEntity.kt │ │ │ │ ├── UnitConversionId.kt │ │ │ │ ├── UnitLocalizedEntity.kt │ │ │ │ └── UnitRefEntity.kt │ │ │ ├── dtos │ │ │ ├── mappers │ │ │ │ ├── UnitLocalizedDtoMapper.kt │ │ │ │ └── UnitRefDtoMapper.kt │ │ │ └── models │ │ │ │ ├── UnitLocalizedDto.kt │ │ │ │ └── UnitRefDto.kt │ │ │ ├── repositories │ │ │ ├── UnitConversionRepository.kt │ │ │ └── UnitLocalizedRepository.kt │ │ │ └── services │ │ │ ├── UnitQueryService.kt │ │ │ └── UnitService.kt │ │ ├── shared │ │ ├── constants │ │ │ └── AllowedSorts.kt │ │ ├── enums │ │ │ ├── Course.kt │ │ │ ├── Diet.kt │ │ │ ├── FilePath.kt │ │ │ ├── ImageResolution.kt │ │ │ └── SearchOrderBy.kt │ │ ├── extensions │ │ │ └── ClassExtensions.kt │ │ ├── interfaces │ │ │ ├── CRepository.kt │ │ │ └── Mapper.kt │ │ ├── models │ │ │ ├── api │ │ │ │ ├── PageableDto.kt │ │ │ │ └── Pagination.kt │ │ │ ├── entities │ │ │ │ ├── CoreEntity.kt │ │ │ │ ├── OwnedEntity.kt │ │ │ │ └── TracedEntity.kt │ │ │ └── localizations │ │ │ │ ├── Localization.kt │ │ │ │ └── LocalizationId.kt │ │ ├── resourceBundles │ │ │ └── AppMessages.kt │ │ └── services │ │ │ ├── AccountCreateService.kt │ │ │ ├── AuthorizationDetails.kt │ │ │ ├── FileService.kt │ │ │ ├── TemplateService.kt │ │ │ └── TransactionService.kt │ │ └── utils │ │ ├── DatabaseUtils.kt │ │ ├── DurationUtils.kt │ │ ├── FileUtils.kt │ │ ├── ImageUtils.kt │ │ ├── JSONUtils.kt │ │ ├── MimeTypes.kt │ │ ├── NumberUtils.kt │ │ ├── URLUtils.kt │ │ ├── ValidatorUtils.kt │ │ └── ZipUtils.kt └── resources │ ├── META-INF │ └── resources │ │ ├── css │ │ ├── font.css │ │ ├── index.css │ │ └── material.css │ │ ├── fonts │ │ └── Roboto-Regular.ttf │ │ ├── icons │ │ ├── icon.png │ │ └── open-in │ │ │ ├── app │ │ │ ├── de.png │ │ │ └── en.png │ │ │ └── web │ │ │ ├── de.png │ │ │ └── en.png │ │ └── mdui-2.1.4 │ │ ├── mdui.css │ │ ├── mdui.global.js │ │ └── theme.js │ ├── application.yaml │ ├── db │ └── migration │ │ ├── V3.0.0_001__add_tables.sql │ │ ├── V3.0.0_002__alter_tables.sql │ │ ├── V3.0.0_003__insert_category_groups.sql │ │ ├── V3.0.0_004__insert_category_groups_i18n.sql │ │ ├── V3.0.0_005__insert_categories.sql │ │ ├── V3.0.0_006__insert_categories_i18n.sql │ │ ├── V3.0.0_007__insert_roles.sql │ │ ├── V3.0.0_008__insert_unit_refs.sql │ │ ├── V3.0.0_009__insert_unit_localizations.sql │ │ └── V3.0.0_010__insert_unit_conversions.sql │ ├── messages │ ├── msg.properties │ └── msg_de.properties │ └── templates │ ├── layouts │ ├── email.html │ ├── main.html │ └── material.html │ ├── recovery │ └── password │ │ └── request │ │ ├── email.html │ │ ├── error.html │ │ ├── ok.html │ │ └── recovery.html │ ├── registration │ ├── ok.html │ └── welcome.html │ └── share │ ├── bring.html │ └── recipe.html └── test └── resources └── application.properties /.github/workflows/clean-workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/.github/workflows/clean-workflow.yaml -------------------------------------------------------------------------------- /.github/workflows/release-workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/.github/workflows/release-workflow.yaml -------------------------------------------------------------------------------- /.github/workflows/test-workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/.github/workflows/test-workflow.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.scripts/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/.scripts/pre-commit -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/README.md -------------------------------------------------------------------------------- /docs/database/migrations/categories.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/docs/database/migrations/categories.csv -------------------------------------------------------------------------------- /docs/database/migrations/category_groups.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/docs/database/migrations/category_groups.csv -------------------------------------------------------------------------------- /docs/database/migrations/localized_units_new.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/docs/database/migrations/localized_units_new.csv -------------------------------------------------------------------------------- /docs/database/migrations/unit_refs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/docs/database/migrations/unit_refs.csv -------------------------------------------------------------------------------- /docs/logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/docs/logo_transparent.png -------------------------------------------------------------------------------- /examples/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/examples/.env.template -------------------------------------------------------------------------------- /examples/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/examples/docker-compose.yaml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/preCommit.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/gradle/preCommit.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "flavormate" 2 | -------------------------------------------------------------------------------- /src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /src/main/docker/Dockerfile.native-micro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/docker/Dockerfile.native-micro -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/configuration/jackson/CustomObjectMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/configuration/jackson/CustomObjectMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/configuration/properties/FlavorMateProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/configuration/properties/FlavorMateProperties.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/configuration/properties/auth/AuthProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/configuration/properties/auth/AuthProperties.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/configuration/properties/auth/jwt/JWTProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/configuration/properties/auth/jwt/JWTProperties.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/configuration/properties/auth/jwt/tokens/TokenProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/configuration/properties/auth/jwt/tokens/TokenProperties.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/configuration/properties/auth/oidc/OIDCProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/configuration/properties/auth/oidc/OIDCProperties.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/configuration/properties/features/FeatureProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/configuration/properties/features/FeatureProperties.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/configuration/properties/general/GeneralProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/configuration/properties/general/GeneralProperties.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/configuration/properties/general/admin/AdminProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/configuration/properties/general/admin/AdminProperties.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/configuration/properties/general/highlights/HighlightsProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/configuration/properties/general/highlights/HighlightsProperties.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/configuration/properties/paths/PathsProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/configuration/properties/paths/PathsProperties.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/configuration/properties/server/ServerProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/configuration/properties/server/ServerProperties.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/auth/config/CustomAwareJWTAuthMechanism.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/auth/config/CustomAwareJWTAuthMechanism.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/auth/config/FeatureRequestFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/auth/config/FeatureRequestFilter.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/auth/config/JwtBlockList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/auth/config/JwtBlockList.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/auth/controllers/AuthController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/auth/controllers/AuthController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/auth/models/LoginForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/auth/models/LoginForm.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/auth/models/NoAuthenticationMechanism.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/auth/models/NoAuthenticationMechanism.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/auth/models/TokenResponseDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/auth/models/TokenResponseDao.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/auth/services/AuthService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/auth/services/AuthService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/auth/services/AuthTokenService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/auth/services/AuthTokenService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/cron/AdminCron.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/cron/AdminCron.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/cron/FileCron.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/cron/FileCron.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/cron/HighlightCron.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/cron/HighlightCron.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/cron/OIDCCron.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/cron/OIDCCron.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/cron/RecipeCron.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/cron/RecipeCron.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/cron/TagCron.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/cron/TagCron.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/cron/TokenCron.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/cron/TokenCron.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/features/controller/FeaturesController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/features/controller/FeaturesController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/features/enums/FeatureType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/features/enums/FeatureType.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/features/models/FeatureResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/features/models/FeatureResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/features/services/FeaturesService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/features/services/FeaturesService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/core/version/controller/FeaturesController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/core/version/controller/FeaturesController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/exceptions/ExceptionDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/exceptions/ExceptionDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/exceptions/ExceptionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/exceptions/ExceptionHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/exceptions/FException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/exceptions/FException.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/exceptions/FExceptionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/exceptions/FExceptionHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/auth/oidc/config/OIDCProviderConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/auth/oidc/config/OIDCProviderConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/auth/oidc/controllers/OIDCController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/auth/oidc/controllers/OIDCController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/auth/oidc/dao/models/OIDCMappingEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/auth/oidc/dao/models/OIDCMappingEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/auth/oidc/dao/models/OIDCMappingEntityId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/auth/oidc/dao/models/OIDCMappingEntityId.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/auth/oidc/dto/models/OIDCProviderDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/auth/oidc/dto/models/OIDCProviderDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/auth/oidc/repositories/OIDCMappingRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/auth/oidc/repositories/OIDCMappingRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/auth/oidc/services/OIDCServices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/auth/oidc/services/OIDCServices.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/bring/controllers/BringController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/bring/controllers/BringController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/bring/services/BringService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/bring/services/BringService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/mappers/LDJsonNutritionInformationMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/mappers/LDJsonNutritionInformationMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/mappers/LDRecipeRecipeEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/mappers/LDRecipeRecipeEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/LDJsonCreativeWork.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/LDJsonCreativeWork.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/LDJsonHowTo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/LDJsonHowTo.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/LDJsonRecipe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/LDJsonRecipe.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/LDJsonThing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/LDJsonThing.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonDefinedTerm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonDefinedTerm.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonImageObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonImageObject.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonLanguage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonLanguage.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonName.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonNutritionInformation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonNutritionInformation.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonPerson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonPerson.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonQuantitativeValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonQuantitativeValue.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonRestrictedDiet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonRestrictedDiet.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/LDJsonSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/step/LDJsonHowToSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/step/LDJsonHowToSection.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/step/LDJsonHowToStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/step/LDJsonHowToStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/step/LDJsonStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/models/types/step/LDJsonStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonDefinedTermDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonDefinedTermDeserializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonDeserializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonImageDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonImageDeserializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonInstantDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonInstantDeserializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonLanguageDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonLanguageDeserializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonPersonDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonPersonDeserializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonRecipeYieldDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonRecipeYieldDeserializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonRestrictedDietDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonRestrictedDietDeserializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonStepDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonStepDeserializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonStringDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/serializers/LDJsonStringDeserializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/services/LDJsonIngredientService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/services/LDJsonIngredientService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/services/LDJsonInstructionService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/services/LDJsonInstructionService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/importExport/ld_json/services/LDJsonService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/importExport/ld_json/services/LDJsonService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/openFoodFacts/api/clients/OFFClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/openFoodFacts/api/clients/OFFClient.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/openFoodFacts/api/daos/models/OFFClientStatsEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/openFoodFacts/api/daos/models/OFFClientStatsEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/openFoodFacts/api/models/OpenFoodFactsNutriments.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/openFoodFacts/api/models/OpenFoodFactsNutriments.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/openFoodFacts/api/models/OpenFoodFactsProduct.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/openFoodFacts/api/models/OpenFoodFactsProduct.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/openFoodFacts/api/models/OpenFoodFactsResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/openFoodFacts/api/models/OpenFoodFactsResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/openFoodFacts/api/repository/OFFClientStatsRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/openFoodFacts/api/repository/OFFClientStatsRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/openFoodFacts/dao/models/OFFProductEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/openFoodFacts/dao/models/OFFProductEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/openFoodFacts/deserializer/OFFDoubleDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/openFoodFacts/deserializer/OFFDoubleDeserializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/openFoodFacts/enums/OFFProductState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/openFoodFacts/enums/OFFProductState.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/openFoodFacts/repositories/OFFProductRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/openFoodFacts/repositories/OFFProductRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/openFoodFacts/services/OFFService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/openFoodFacts/services/OFFService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/ratings/controllers/RatingsController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/ratings/controllers/RatingsController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/ratings/daos/RatingEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/ratings/daos/RatingEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/ratings/daos/RatingEntityId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/ratings/daos/RatingEntityId.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/ratings/dtos/RatingsDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/ratings/dtos/RatingsDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/ratings/dtos/RecipeRatingFormDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/ratings/dtos/RecipeRatingFormDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/ratings/repositories/RatingsRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/ratings/repositories/RatingsRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/ratings/services/RatingsMutationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/ratings/services/RatingsMutationService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/ratings/services/RatingsQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/ratings/services/RatingsQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/ratings/services/RatingsService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/ratings/services/RatingsService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/recovery/controllers/RecoveryController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/recovery/controllers/RecoveryController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/recovery/services/RecoveryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/recovery/services/RecoveryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/registration/controllers/RegistrationController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/registration/controllers/RegistrationController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/registration/models/RegistrationForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/registration/models/RegistrationForm.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/registration/services/RegistrationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/registration/services/RegistrationService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/scraper/controllers/ScraperController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/scraper/controllers/ScraperController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/scraper/services/ScraperService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/scraper/services/ScraperService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/share/controllers/ShareController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/share/controllers/ShareController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/share/mappers/SharedRecipeMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/share/mappers/SharedRecipeMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/share/models/SharedIngredientGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/share/models/SharedIngredientGroup.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/share/models/SharedInstructionGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/share/models/SharedInstructionGroup.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/share/models/SharedRecipe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/share/models/SharedRecipe.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/share/services/ShareService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/share/services/ShareService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/urlShortener/controllers/ShortenerController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/urlShortener/controllers/ShortenerController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/urlShortener/models/ShortenerEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/urlShortener/models/ShortenerEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/urlShortener/repositories/ShortenerRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/urlShortener/repositories/ShortenerRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/extensions/urlShortener/services/ShortenerService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/extensions/urlShortener/services/ShortenerService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/controllers/AccountController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/controllers/AccountController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/dao/models/AccountEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/dao/models/AccountEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/dao/models/AccountFileEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/dao/models/AccountFileEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/dtos/mappers/AccountFileDtoMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/dtos/mappers/AccountFileDtoMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/dtos/mappers/AccountFullDtoMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/dtos/mappers/AccountFullDtoMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/dtos/mappers/AccountPreviewDtoMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/dtos/mappers/AccountPreviewDtoMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/dtos/models/AccountDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/dtos/models/AccountDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/dtos/models/AccountFileDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/dtos/models/AccountFileDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/dtos/models/AccountFullDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/dtos/models/AccountFullDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/dtos/models/AccountPasswordFormDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/dtos/models/AccountPasswordFormDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/dtos/models/AccountPreviewDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/dtos/models/AccountPreviewDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/dtos/models/AccountUpdateDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/dtos/models/AccountUpdateDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/repositories/AccountFileRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/repositories/AccountFileRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/repositories/AccountRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/repositories/AccountRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/services/AccountQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/services/AccountQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/services/AccountService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/services/AccountService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/services/file/AccountFileMutationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/services/file/AccountFileMutationService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/services/file/AccountFileQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/services/file/AccountFileQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/services/file/AccountFileService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/services/file/AccountFileService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/services/id/AccountIdMutationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/services/id/AccountIdMutationService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/services/id/AccountIdQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/services/id/AccountIdQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/account/services/id/AccountIdService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/account/services/id/AccountIdService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/admin/controllers/AdminController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/admin/controllers/AdminController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/admin/dto/AccountForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/admin/dto/AccountForm.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/admin/services/AdminMutationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/admin/services/AdminMutationService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/admin/services/AdminQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/admin/services/AdminQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/admin/services/AdminService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/admin/services/AdminService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/book/controllers/BookController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/book/controllers/BookController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/book/daos/models/BookEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/book/daos/models/BookEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/book/dtos/mapper/BookDtoMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/book/dtos/mapper/BookDtoMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/book/dtos/models/BookCreateDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/book/dtos/models/BookCreateDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/book/dtos/models/BookDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/book/dtos/models/BookDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/book/dtos/models/BookUpdateDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/book/dtos/models/BookUpdateDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/book/repositories/BookRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/book/repositories/BookRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/book/services/BookMutationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/book/services/BookMutationService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/book/services/BookQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/book/services/BookQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/book/services/BookService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/book/services/BookService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/book/services/id/BookIdMutationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/book/services/id/BookIdMutationService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/book/services/id/BookIdQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/book/services/id/BookIdQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/book/services/id/BookIdService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/book/services/id/BookIdService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/category/controllers/CategoryController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/category/controllers/CategoryController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/category/daos/models/CategoryEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/category/daos/models/CategoryEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/category/daos/models/CategoryLocalizationEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/category/daos/models/CategoryLocalizationEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/category/dtos/mappers/CategoryDtoMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/category/dtos/mappers/CategoryDtoMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/category/dtos/models/CategoryDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/category/dtos/models/CategoryDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/category/repositories/CategoryRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/category/repositories/CategoryRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/category/services/CategoryQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/category/services/CategoryQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/category/services/CategoryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/category/services/CategoryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/categoryGroup/controllers/CategoryGroupController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/categoryGroup/controllers/CategoryGroupController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/categoryGroup/daos/models/CategoryGroupEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/categoryGroup/daos/models/CategoryGroupEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/categoryGroup/daos/models/CategoryGroupLocalizationEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/categoryGroup/daos/models/CategoryGroupLocalizationEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/categoryGroup/dtos/mappers/CategoryGroupDtoMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/categoryGroup/dtos/mappers/CategoryGroupDtoMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/categoryGroup/dtos/models/CategoryGroupDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/categoryGroup/dtos/models/CategoryGroupDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/categoryGroup/repositories/CategoryGroupRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/categoryGroup/repositories/CategoryGroupRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/categoryGroup/services/CategoryGroupQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/categoryGroup/services/CategoryGroupQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/categoryGroup/services/CategoryGroupService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/categoryGroup/services/CategoryGroupService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/highlight/controllers/HighlightController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/highlight/controllers/HighlightController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/highlight/daos/models/HighlightEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/highlight/daos/models/HighlightEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/highlight/dtos/mappers/HighlightDtoMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/highlight/dtos/mappers/HighlightDtoMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/highlight/dtos/models/HighlightDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/highlight/dtos/models/HighlightDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/highlight/repositories/HighlightRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/highlight/repositories/HighlightRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/highlight/services/HighlightQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/highlight/services/HighlightQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/highlight/services/HighlightService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/highlight/services/HighlightService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/controllers/RecipeController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/controllers/RecipeController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/daos/mappers/RecipeEntityRecipeDraftEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/daos/mappers/RecipeEntityRecipeDraftEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/daos/mappers/ServingEntityServingDraftEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/daos/mappers/ServingEntityServingDraftEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/daos/mappers/ingredient/IngredientEntityIngredientDraftEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/daos/mappers/ingredient/IngredientEntityIngredientDraftEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/daos/mappers/ingredient/IngredientGroupEntityIngredientGroupDraftEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/daos/mappers/ingredient/IngredientGroupEntityIngredientGroupDraftEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/daos/mappers/instruction/InstructionEntityInstructionDraftEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/daos/mappers/instruction/InstructionEntityInstructionDraftEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/daos/mappers/instruction/InstructionGroupEntityInstructionGroupDraftEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/daos/mappers/instruction/InstructionGroupEntityInstructionGroupDraftEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/daos/models/NutritionEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/daos/models/NutritionEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/daos/models/RecipeEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/daos/models/RecipeEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/daos/models/RecipeFileEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/daos/models/RecipeFileEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/daos/models/ServingEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/daos/models/ServingEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/daos/models/ingredient/IngredientEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/daos/models/ingredient/IngredientEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/daos/models/ingredient/IngredientGroupEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/daos/models/ingredient/IngredientGroupEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/daos/models/instruction/InstructionEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/daos/models/instruction/InstructionEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/daos/models/instruction/InstructionGroupEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/daos/models/instruction/InstructionGroupEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/dtos/mappers/RecipeDtoFullMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/dtos/mappers/RecipeDtoFullMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/dtos/mappers/RecipeDtoPreviewMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/dtos/mappers/RecipeDtoPreviewMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/dtos/mappers/RecipeFileDtoPreviewMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/dtos/mappers/RecipeFileDtoPreviewMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeDtoFull.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeDtoFull.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeDtoPreview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeDtoPreview.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeFileDtoPreview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeFileDtoPreview.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeIngredientGroupDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeIngredientGroupDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeIngredientGroupItemDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeIngredientGroupItemDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeIngredientGroupItemNutritionDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeIngredientGroupItemNutritionDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeInstructionGroupDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeInstructionGroupDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeInstructionGroupItemDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeInstructionGroupItemDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeServingDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeServingDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeTransferDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/dtos/models/RecipeTransferDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/repositories/RecipeFileRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/repositories/RecipeFileRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/repositories/RecipeNutritionRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/repositories/RecipeNutritionRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/repositories/RecipeRatingRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/repositories/RecipeRatingRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/repositories/RecipeRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/repositories/RecipeRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/services/RecipeMutationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/services/RecipeMutationService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/services/RecipeQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/services/RecipeQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipe/services/RecipeService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipe/services/RecipeService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/controllers/RecipeDraftController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/controllers/RecipeDraftController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/converters/IngredientGroupDraftConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/converters/IngredientGroupDraftConverter.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/converters/InstructionGroupDraftConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/converters/InstructionGroupDraftConverter.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/converters/ServingConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/converters/ServingConverter.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/daos/mapper/IngredientDraftEntityIngredientEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/daos/mapper/IngredientDraftEntityIngredientEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/daos/mapper/IngredientGroupDraftEntityIngredientGroupEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/daos/mapper/IngredientGroupDraftEntityIngredientGroupEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/daos/mapper/InstructionDraftEntityInstructionEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/daos/mapper/InstructionDraftEntityInstructionEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/daos/mapper/InstructionGroupDraftEntityInstructionGroupEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/daos/mapper/InstructionGroupDraftEntityInstructionGroupEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/daos/mapper/NutritionDraftEntityNutritionEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/daos/mapper/NutritionDraftEntityNutritionEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/daos/mapper/RecipeDraftEntityRecipeEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/daos/mapper/RecipeDraftEntityRecipeEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/daos/mapper/ServingDraftEntityServingEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/daos/mapper/ServingDraftEntityServingEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/RecipeDraftEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/RecipeDraftEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/RecipeDraftFileEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/RecipeDraftFileEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/RecipeDraftIngredientGroupItemNutritionEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/RecipeDraftIngredientGroupItemNutritionEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/RecipeDraftServingEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/RecipeDraftServingEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/ingredients/RecipeDraftIngredientGroupEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/ingredients/RecipeDraftIngredientGroupEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/ingredients/RecipeDraftIngredientGroupItemEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/ingredients/RecipeDraftIngredientGroupItemEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/instructions/RecipeDraftInstructionGroupEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/instructions/RecipeDraftInstructionGroupEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/instructions/RecipeDraftInstructionGroupItemEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/daos/models/instructions/RecipeDraftInstructionGroupItemEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/mappers/RecipeDraftDtoFullMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/mappers/RecipeDraftDtoFullMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/mappers/RecipeDraftDtoPreviewMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/mappers/RecipeDraftDtoPreviewMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/mappers/RecipeDraftFileEntityRecipeDraftFileDtoMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/mappers/RecipeDraftFileEntityRecipeDraftFileDtoMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftDtoFull.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftDtoFull.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftDtoPreview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftDtoPreview.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftFileDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftFileDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftIngredientGroupDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftIngredientGroupDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftIngredientGroupItemDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftIngredientGroupItemDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftIngredientGroupItemNutritionDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftIngredientGroupItemNutritionDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftInstructionGroupDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftInstructionGroupDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftInstructionGroupItemDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftInstructionGroupItemDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftServingDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/RecipeDraftServingDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/update/RecipeDraftIngredientGroupItemNutritionUpdateDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/update/RecipeDraftIngredientGroupItemNutritionUpdateDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/update/RecipeDraftIngredientGroupItemUpdateDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/update/RecipeDraftIngredientGroupItemUpdateDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/update/RecipeDraftIngredientGroupUpdateDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/update/RecipeDraftIngredientGroupUpdateDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/update/RecipeDraftInstructionGroupItemUpdateDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/update/RecipeDraftInstructionGroupItemUpdateDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/update/RecipeDraftInstructionGroupUpdateDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/update/RecipeDraftInstructionGroupUpdateDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/update/RecipeDraftServingUpdateDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/update/RecipeDraftServingUpdateDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/update/RecipeDraftUpdateDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/dtos/models/update/RecipeDraftUpdateDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/repositories/RecipeDraftFileRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/repositories/RecipeDraftFileRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/repositories/RecipeDraftIngredientGroupItemRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/repositories/RecipeDraftIngredientGroupItemRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/repositories/RecipeDraftIngredientGroupRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/repositories/RecipeDraftIngredientGroupRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/repositories/RecipeDraftInstructionGroupItemRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/repositories/RecipeDraftInstructionGroupItemRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/repositories/RecipeDraftInstructionGroupRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/repositories/RecipeDraftInstructionGroupRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/repositories/RecipeDraftRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/repositories/RecipeDraftRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/services/RecipeDraftMutationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/services/RecipeDraftMutationService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/services/RecipeDraftQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/services/RecipeDraftQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/services/RecipeDraftService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/services/RecipeDraftService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/services/file/RecipeDraftFileMutationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/services/file/RecipeDraftFileMutationService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/services/file/RecipeDraftFileQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/services/file/RecipeDraftFileQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/recipeDraft/services/file/RecipeDraftFileService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/recipeDraft/services/file/RecipeDraftFileService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/role/enums/RoleTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/role/enums/RoleTypes.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/role/models/RoleEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/role/models/RoleEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/role/repositories/RoleRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/role/repositories/RoleRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/story/controllers/StoryController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/story/controllers/StoryController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/story/daos/models/StoryEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/story/daos/models/StoryEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/story/dtos/mappers/StoryDtoFullMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/story/dtos/mappers/StoryDtoFullMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/story/dtos/mappers/StoryDtoPreviewMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/story/dtos/mappers/StoryDtoPreviewMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/story/dtos/models/StoryDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/story/dtos/models/StoryDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/story/dtos/models/StoryDtoFull.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/story/dtos/models/StoryDtoFull.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/story/dtos/models/StoryDtoPreview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/story/dtos/models/StoryDtoPreview.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/story/repositories/StoryRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/story/repositories/StoryRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/story/services/StoryMutationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/story/services/StoryMutationService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/story/services/StoryQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/story/services/StoryQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/story/services/StoryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/story/services/StoryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/controllers/StoryDraftController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/controllers/StoryDraftController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/converters/StoryDraftRecipeConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/converters/StoryDraftRecipeConverter.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/daos/mappers/StoryDraftEntityStoryEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/daos/mappers/StoryDraftEntityStoryEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/daos/mappers/StoryDraftRecipeEntityRecipeEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/daos/mappers/StoryDraftRecipeEntityRecipeEntityMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/daos/models/StoryDraftEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/daos/models/StoryDraftEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/daos/models/StoryDraftRecipeEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/daos/models/StoryDraftRecipeEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/dtos/mappers/StoryDraftDtoFullMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/dtos/mappers/StoryDraftDtoFullMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/dtos/mappers/StoryDraftDtoPreviewMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/dtos/mappers/StoryDraftDtoPreviewMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/dtos/models/StoryDraftDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/dtos/models/StoryDraftDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/dtos/models/StoryDraftDtoFull.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/dtos/models/StoryDraftDtoFull.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/dtos/models/StoryDraftDtoPreview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/dtos/models/StoryDraftDtoPreview.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/dtos/models/StoryDraftUpdateDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/dtos/models/StoryDraftUpdateDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/repositories/StoryDraftRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/repositories/StoryDraftRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/services/StoryDraftMutationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/services/StoryDraftMutationService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/services/StoryDraftQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/services/StoryDraftQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/storyDraft/services/StoryDraftService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/storyDraft/services/StoryDraftService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/tag/controllers/TagController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/tag/controllers/TagController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/tag/daos/models/TagEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/tag/daos/models/TagEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/tag/dtos/mappers/TagDtoMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/tag/dtos/mappers/TagDtoMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/tag/dtos/models/TagDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/tag/dtos/models/TagDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/tag/repositories/TagRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/tag/repositories/TagRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/tag/services/TagQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/tag/services/TagQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/tag/services/TagService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/tag/services/TagService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/token/daos/TokenEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/token/daos/TokenEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/token/enums/TokenType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/token/enums/TokenType.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/token/repositories/TokenRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/token/repositories/TokenRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/unit/controllers/UnitController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/unit/controllers/UnitController.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/unit/daos/models/UnitConversionEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/unit/daos/models/UnitConversionEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/unit/daos/models/UnitConversionId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/unit/daos/models/UnitConversionId.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/unit/daos/models/UnitLocalizedEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/unit/daos/models/UnitLocalizedEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/unit/daos/models/UnitRefEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/unit/daos/models/UnitRefEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/unit/dtos/mappers/UnitLocalizedDtoMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/unit/dtos/mappers/UnitLocalizedDtoMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/unit/dtos/mappers/UnitRefDtoMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/unit/dtos/mappers/UnitRefDtoMapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/unit/dtos/models/UnitLocalizedDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/unit/dtos/models/UnitLocalizedDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/unit/dtos/models/UnitRefDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/unit/dtos/models/UnitRefDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/unit/repositories/UnitConversionRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/unit/repositories/UnitConversionRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/unit/repositories/UnitLocalizedRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/unit/repositories/UnitLocalizedRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/unit/services/UnitQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/unit/services/UnitQueryService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/features/unit/services/UnitService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/features/unit/services/UnitService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/constants/AllowedSorts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/constants/AllowedSorts.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/enums/Course.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/enums/Course.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/enums/Diet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/enums/Diet.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/enums/FilePath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/enums/FilePath.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/enums/ImageResolution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/enums/ImageResolution.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/enums/SearchOrderBy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/enums/SearchOrderBy.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/extensions/ClassExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/extensions/ClassExtensions.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/interfaces/CRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/interfaces/CRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/interfaces/Mapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/interfaces/Mapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/models/api/PageableDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/models/api/PageableDto.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/models/api/Pagination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/models/api/Pagination.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/models/entities/CoreEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/models/entities/CoreEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/models/entities/OwnedEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/models/entities/OwnedEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/models/entities/TracedEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/models/entities/TracedEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/models/localizations/Localization.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/models/localizations/Localization.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/models/localizations/LocalizationId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/models/localizations/LocalizationId.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/resourceBundles/AppMessages.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/resourceBundles/AppMessages.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/services/AccountCreateService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/services/AccountCreateService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/services/AuthorizationDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/services/AuthorizationDetails.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/services/FileService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/services/FileService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/services/TemplateService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/services/TemplateService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/shared/services/TransactionService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/shared/services/TransactionService.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/utils/DatabaseUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/utils/DatabaseUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/utils/DurationUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/utils/DurationUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/utils/FileUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/utils/FileUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/utils/ImageUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/utils/ImageUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/utils/JSONUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/utils/JSONUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/utils/MimeTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/utils/MimeTypes.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/utils/NumberUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/utils/NumberUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/utils/URLUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/utils/URLUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/utils/ValidatorUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/utils/ValidatorUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/flavormate/utils/ZipUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/kotlin/de/flavormate/utils/ZipUtils.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/css/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/META-INF/resources/css/font.css -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/META-INF/resources/css/index.css -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/css/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/META-INF/resources/css/material.css -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/META-INF/resources/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/META-INF/resources/icons/icon.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/icons/open-in/app/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/META-INF/resources/icons/open-in/app/de.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/icons/open-in/app/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/META-INF/resources/icons/open-in/app/en.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/icons/open-in/web/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/META-INF/resources/icons/open-in/web/de.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/icons/open-in/web/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/META-INF/resources/icons/open-in/web/en.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/mdui-2.1.4/mdui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/META-INF/resources/mdui-2.1.4/mdui.css -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/mdui-2.1.4/mdui.global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/META-INF/resources/mdui-2.1.4/mdui.global.js -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/mdui-2.1.4/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/META-INF/resources/mdui-2.1.4/theme.js -------------------------------------------------------------------------------- /src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/application.yaml -------------------------------------------------------------------------------- /src/main/resources/db/migration/V3.0.0_001__add_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/db/migration/V3.0.0_001__add_tables.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V3.0.0_002__alter_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/db/migration/V3.0.0_002__alter_tables.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V3.0.0_003__insert_category_groups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/db/migration/V3.0.0_003__insert_category_groups.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V3.0.0_004__insert_category_groups_i18n.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/db/migration/V3.0.0_004__insert_category_groups_i18n.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V3.0.0_005__insert_categories.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/db/migration/V3.0.0_005__insert_categories.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V3.0.0_006__insert_categories_i18n.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/db/migration/V3.0.0_006__insert_categories_i18n.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V3.0.0_007__insert_roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/db/migration/V3.0.0_007__insert_roles.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V3.0.0_008__insert_unit_refs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/db/migration/V3.0.0_008__insert_unit_refs.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V3.0.0_009__insert_unit_localizations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/db/migration/V3.0.0_009__insert_unit_localizations.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V3.0.0_010__insert_unit_conversions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/db/migration/V3.0.0_010__insert_unit_conversions.sql -------------------------------------------------------------------------------- /src/main/resources/messages/msg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/messages/msg.properties -------------------------------------------------------------------------------- /src/main/resources/messages/msg_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/messages/msg_de.properties -------------------------------------------------------------------------------- /src/main/resources/templates/layouts/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/templates/layouts/email.html -------------------------------------------------------------------------------- /src/main/resources/templates/layouts/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/templates/layouts/main.html -------------------------------------------------------------------------------- /src/main/resources/templates/layouts/material.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/templates/layouts/material.html -------------------------------------------------------------------------------- /src/main/resources/templates/recovery/password/request/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/templates/recovery/password/request/email.html -------------------------------------------------------------------------------- /src/main/resources/templates/recovery/password/request/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/templates/recovery/password/request/error.html -------------------------------------------------------------------------------- /src/main/resources/templates/recovery/password/request/ok.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/templates/recovery/password/request/ok.html -------------------------------------------------------------------------------- /src/main/resources/templates/recovery/password/request/recovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/templates/recovery/password/request/recovery.html -------------------------------------------------------------------------------- /src/main/resources/templates/registration/ok.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/templates/registration/ok.html -------------------------------------------------------------------------------- /src/main/resources/templates/registration/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/templates/registration/welcome.html -------------------------------------------------------------------------------- /src/main/resources/templates/share/bring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/templates/share/bring.html -------------------------------------------------------------------------------- /src/main/resources/templates/share/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/main/resources/templates/share/recipe.html -------------------------------------------------------------------------------- /src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlavorMate/flavormate-server/HEAD/src/test/resources/application.properties --------------------------------------------------------------------------------