1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-22 06:39:41 +02:00

chore: code gen (#3012)

* code-gen

* remove old generator commands

* remove old docker stuff
This commit is contained in:
Hayden 2024-01-20 10:34:57 -06:00 committed by GitHub
parent 0602d0bf00
commit 8d8a101580
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 43 additions and 51 deletions

View file

@ -1,5 +1,5 @@
import { BaseAPI } from "../base/base-clients";
import { AdminAboutInfo, DockerVolumeText, CheckAppConfig } from "~/lib/api/types/admin";
import { AdminAboutInfo, CheckAppConfig } from "~/lib/api/types/admin";
const prefix = "/api";
@ -24,10 +24,6 @@ export class AdminAboutAPI extends BaseAPI {
return await this.requests.get<CheckAppConfig>(routes.check);
}
async checkDocker() {
return await this.requests.get<DockerVolumeText>(routes.docker);
}
async getDockerValidateFileContents() {
return await this.requests.get<string>(routes.validationFile);
}