mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 02:03:35 -04:00 
			
		
		
		
	feat: ✨ Paprika/Mealie Migration support (#873)
* feat: ✨ paprika support - partial * feat: ✨ add full paprika support * re-organize data directory * add data directory auto-gen * rewrite migration tests * remove print statements * remove hard-coded paths * add auto-tag support * add mealie migration support * add looking for migraiton button
This commit is contained in:
		| @@ -3,9 +3,10 @@ import { ReportSummary } from "./group-reports"; | ||||
|  | ||||
| const prefix = "/api"; | ||||
|  | ||||
| export type SupportedMigration = "nextcloud" | "chowdown"; | ||||
| export type SupportedMigration = "nextcloud" | "chowdown" | "mealie_alpha" | "paprika"; | ||||
|  | ||||
| export interface MigrationPayload { | ||||
|   addMigrationTag: boolean; | ||||
|   migrationType: SupportedMigration; | ||||
|   archive: File; | ||||
| } | ||||
| @@ -17,6 +18,7 @@ const routes = { | ||||
| export class GroupMigrationApi extends BaseAPI { | ||||
|   async startMigration(payload: MigrationPayload) { | ||||
|     const form = new FormData(); | ||||
|     form.append("add_migration_tag", String(payload.addMigrationTag)); | ||||
|     form.append("migration_type", payload.migrationType); | ||||
|     form.append("archive", payload.archive); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user