mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
14 lines
315 B
TypeScript
14 lines
315 B
TypeScript
import { BaseAPI } from "../_base";
|
|
import { ServerTask } from "~/types/api-types/server";
|
|
const prefix = "/api";
|
|
|
|
const routes = {
|
|
base: `${prefix}/groups/server-tasks`,
|
|
};
|
|
|
|
export class GroupServerTaskAPI extends BaseAPI {
|
|
async getAll() {
|
|
return await this.requests.get<ServerTask[]>(routes.base);
|
|
}
|
|
}
|