Docs/v0.5.0 second pass (#496)

* update docs

* use auto-gen routes

* dumb deps

* remove whitespace

* github action to build dev docs container

* no cache

Co-authored-by: hay-kot <hay-kot@pm.me>
This commit is contained in:
Hayden
2021-06-11 21:57:59 -08:00
committed by GitHub
parent 06ed377c00
commit e34079673c
42 changed files with 555 additions and 508 deletions

View File

@@ -44,7 +44,7 @@ import { api } from "@/api";
import BaseDialog from "./BaseDialog";
import ImportOptions from "@/components/FormHelpers/ImportOptions";
import TheDownloadBtn from "@/components/UI/Buttons/TheDownloadBtn.vue";
import { backupURLs } from "@/api/backup";
import { API_ROUTES } from "@/api/apiRoutes";
export default {
components: { ImportOptions, TheDownloadBtn, BaseDialog },
props: {
@@ -73,7 +73,7 @@ export default {
},
computed: {
downloadUrl() {
return backupURLs.downloadBackup(this.name);
return API_ROUTES.backupsFileNameDownload(this.name);
},
},
methods: {