diff --git a/dev/dev-notes.md b/dev/dev-notes.md index e7dfbe0d8..efa32af75 100644 --- a/dev/dev-notes.md +++ b/dev/dev-notes.md @@ -20,6 +20,7 @@ Documentation - [ ] V0.1.0 Release Notes - [ ] Nextcloud Migration How To - [ ] New Docker Setup with Sqlite +- [ ] Update Env Variables - [ ] New Roadmap / Milestones Frontend diff --git a/frontend/src/components/Settings/Backup/BackupCard.vue b/frontend/src/components/Settings/Backup/BackupCard.vue new file mode 100644 index 000000000..0981819ff --- /dev/null +++ b/frontend/src/components/Settings/Backup/BackupCard.vue @@ -0,0 +1,69 @@ + + + + + \ No newline at end of file diff --git a/frontend/src/components/Settings/Backup/ImportDialog.vue b/frontend/src/components/Settings/Backup/ImportDialog.vue new file mode 100644 index 000000000..90e9c6242 --- /dev/null +++ b/frontend/src/components/Settings/Backup/ImportDialog.vue @@ -0,0 +1,101 @@ + + + + + + + \ No newline at end of file diff --git a/frontend/src/components/Settings/Backup/index.vue b/frontend/src/components/Settings/Backup/index.vue index b609d2c80..1917dccfd 100644 --- a/frontend/src/components/Settings/Backup/index.vue +++ b/frontend/src/components/Settings/Backup/index.vue @@ -26,7 +26,7 @@ > - + Backup Recipes @@ -56,6 +56,7 @@ + import api from "../../../api"; import SuccessFailureAlert from "../../UI/SuccessFailureAlert"; +import BackupCard from "./BackupCard"; export default { components: { SuccessFailureAlert, + BackupCard, }, data() { return { diff --git a/mealie/data/db/mealie.sqlite b/mealie/data/db/mealie.sqlite index 825847d36..fba967d48 100644 Binary files a/mealie/data/db/mealie.sqlite and b/mealie/data/db/mealie.sqlite differ