Logo
Explore Help
Sign In
Mirrors/mealie
1
0
Fork 0
You've already forked mealie
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-10-29 09:14:28 -04:00
Code Issues Packages Projects Releases Wiki Activity
Files
dddcb644bfe5f735503abcb51114051d1fa57a5a
mealie/frontend/lib/api/public/shared.ts

15 lines
381 B
TypeScript
Raw Normal View History

chore: frontend testing setup (#1739) * add vitest * initialize lib w/ tests * move to dev dep * run tests in CI * update file names * move api folder to lib * move api and api types to same folder * update generator outpath * rm husky * i guess i _did_ need those types * reorg types * extract validators into testable components * (WIP) start composable testing * fix import type * fix linter complaint * simplify icon type def * fix linter errors (maybe?) * rename client file for sorting
2022-10-22 11:51:07 -08:00
import { BaseAPI } from "../base/base-clients";
import { Recipe } from "~/lib/api/types/recipe";
feat: public recipe access (#1610) * initial public explorer API endpoint * public API endpoint * cleanup recipe page * wip: init explorer page * use public URLs for shared recipes * refactor private share tokens to use shared page
2022-08-28 20:08:33 -08:00
const prefix = "/api";
const routes = {
recipeShareToken: (token: string) => `${prefix}/recipes/shared/${token}`,
};
export class SharedApi extends BaseAPI {
async getShared(item_id: string) {
return await this.requests.get<Recipe>(routes.recipeShareToken(item_id));
}
}
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.24.7 Page: 37ms Template: 1ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API