mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 00:04:23 -04:00
Feature/import keywords as tags (#1170)
* feat: import original keywords as tags * remove cached env * Update frontend api types * fix: Issues with previous tag scraping implementation * Update category handling in backend * Update backend tests to include group_id * Correct type check * Update create-url interface * Improve tag cleaner list support * remove builtin name shadowing * update type annotations * test include tags scraper * implement scaper context for optional data * readd cache venv * use continue instead of break * remove test callback Co-authored-by: Miroito <alban.vachette@gmail.com>
This commit is contained in:
@@ -103,11 +103,13 @@ export interface RecipeSummary {
|
||||
}
|
||||
export interface RecipeCategory {
|
||||
id?: string;
|
||||
groupId: string;
|
||||
name: string;
|
||||
slug: string;
|
||||
}
|
||||
export interface RecipeTag {
|
||||
id?: string;
|
||||
groupId: string;
|
||||
name: string;
|
||||
slug: string;
|
||||
}
|
||||
|
||||
@@ -89,11 +89,13 @@ export interface RecipeSummary {
|
||||
}
|
||||
export interface RecipeCategory {
|
||||
id?: string;
|
||||
groupId: string;
|
||||
name: string;
|
||||
slug: string;
|
||||
}
|
||||
export interface RecipeTag {
|
||||
id?: string;
|
||||
groupId: string;
|
||||
name: string;
|
||||
slug: string;
|
||||
}
|
||||
|
||||
@@ -258,11 +258,13 @@ export interface RecipeSummary {
|
||||
}
|
||||
export interface RecipeCategory {
|
||||
id?: string;
|
||||
groupId: string;
|
||||
name: string;
|
||||
slug: string;
|
||||
}
|
||||
export interface RecipeTag {
|
||||
id?: string;
|
||||
groupId: string;
|
||||
name: string;
|
||||
slug: string;
|
||||
}
|
||||
|
||||
@@ -119,11 +119,13 @@ export interface RecipeSummary {
|
||||
}
|
||||
export interface RecipeCategory {
|
||||
id?: string;
|
||||
groupId: string;
|
||||
name: string;
|
||||
slug: string;
|
||||
}
|
||||
export interface RecipeTag {
|
||||
id?: string;
|
||||
groupId: string;
|
||||
name: string;
|
||||
slug: string;
|
||||
}
|
||||
|
||||
@@ -68,11 +68,13 @@ export interface CreateRecipeBulk {
|
||||
}
|
||||
export interface RecipeCategory {
|
||||
id?: string;
|
||||
groupId: string;
|
||||
name: string;
|
||||
slug: string;
|
||||
}
|
||||
export interface RecipeTag {
|
||||
id?: string;
|
||||
groupId: string;
|
||||
name: string;
|
||||
slug: string;
|
||||
}
|
||||
|
||||
@@ -132,11 +132,13 @@ export interface RecipeSummary {
|
||||
}
|
||||
export interface RecipeCategory {
|
||||
id?: string;
|
||||
groupId: string;
|
||||
name: string;
|
||||
slug: string;
|
||||
}
|
||||
export interface RecipeTag {
|
||||
id?: string;
|
||||
groupId: string;
|
||||
name: string;
|
||||
slug: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user