diff --git a/README.md b/README.md index ae2cf9d44..7cadf8a0b 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ **Mealie** is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family. Easily add recipes into your database by providing the url and mealie will automatically import the relavent data or add a family recipe with the UI editor. -Mealie also provides a secure API for interactions from 3rd party applications. **Why does my recipe manager need an API?** An API allows integration into applications like [Home Assistant]() that can act as notification engines to provide custom notifications based of Meal Plan data to remind you to defrost the chicken, marinade the steak, or start the CrockPot. See the section on [Meal Plan hooks](#hooks) for more information. Additionally, you can access any avaiable API from the backend server. To explore the API spin up your server and navigate to http://yourserver.com/docs for interactive API documentation. +Mealie also provides a secure API for interactions from 3rd party applications. **Why does my recipe manager need an API?** An API allows integration into applications like [Home Assistant]() that can act as notification engines to provide custom notifications based of Meal Plan data to remind you to defrost the chicken, marinade the steak, or start the CrockPot. See the section on [Meal Plan hooks](#hooks) for more information. Additionally, you can access any available API from the backend server. To explore the API spin up your server and navigate to http://yourserver.com/docs for interactive API documentation. diff --git a/frontend/src/api/backup.js b/frontend/src/api/backup.js index 8d8f611d3..e6971151e 100644 --- a/frontend/src/api/backup.js +++ b/frontend/src/api/backup.js @@ -6,7 +6,7 @@ const backupBase = baseURL + "backups/"; const backupURLs = { // Backup - avaiable: `${backupBase}avaiable/`, + available: `${backupBase}available/`, createBackup: `${backupBase}export/database/`, importBackup: (fileName) => `${backupBase}${fileName}/import/`, deleteBackup: (fileName) => `${backupBase}${fileName}/delete/`, @@ -14,7 +14,7 @@ const backupURLs = { export default { async requestAvailable() { - let response = await apiReq.get(backupURLs.avaiable); + let response = await apiReq.get(backupURLs.available); return response.data; }, diff --git a/frontend/src/components/Admin/Theme.vue b/frontend/src/components/Admin/Theme.vue index 9dc682818..392f58a9a 100644 --- a/frontend/src/components/Admin/Theme.vue +++ b/frontend/src/components/Admin/Theme.vue @@ -21,7 +21,7 @@ Choose a Recipe