mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 08:14:30 -04:00
fix: Limit shopping list owners to current group (#3305)
* add route for getting group-only users * add new api route to frontend * update shopping list user getAll call * tests * fixed bad import * replace UserOut with UserSummary * fix params
This commit is contained in:
4
frontend/types/components.d.ts
vendored
4
frontend/types/components.d.ts
vendored
@@ -14,6 +14,7 @@ import BaseDivider from "@/components/global/BaseDivider.vue";
|
||||
import BaseOverflowButton from "@/components/global/BaseOverflowButton.vue";
|
||||
import BasePageTitle from "@/components/global/BasePageTitle.vue";
|
||||
import BaseStatCard from "@/components/global/BaseStatCard.vue";
|
||||
import BaseWizard from "@/components/global/BaseWizard.vue";
|
||||
import ButtonLink from "@/components/global/ButtonLink.vue";
|
||||
import ContextMenu from "@/components/global/ContextMenu.vue";
|
||||
import CrudTable from "@/components/global/CrudTable.vue";
|
||||
@@ -32,7 +33,6 @@ import ReportTable from "@/components/global/ReportTable.vue";
|
||||
import SafeMarkdown from "@/components/global/SafeMarkdown.vue";
|
||||
import StatsCards from "@/components/global/StatsCards.vue";
|
||||
import ToggleState from "@/components/global/ToggleState.vue";
|
||||
import BaseWizard from "@/components/global/BaseWizard.vue";
|
||||
import DefaultLayout from "@/components/layout/DefaultLayout.vue";
|
||||
|
||||
declare module "vue" {
|
||||
@@ -53,6 +53,7 @@ declare module "vue" {
|
||||
BaseOverflowButton: typeof BaseOverflowButton;
|
||||
BasePageTitle: typeof BasePageTitle;
|
||||
BaseStatCard: typeof BaseStatCard;
|
||||
BaseWizard: typeof BaseWizard;
|
||||
ButtonLink: typeof ButtonLink;
|
||||
ContextMenu: typeof ContextMenu;
|
||||
CrudTable: typeof CrudTable;
|
||||
@@ -71,7 +72,6 @@ declare module "vue" {
|
||||
SafeMarkdown: typeof SafeMarkdown;
|
||||
StatsCards: typeof StatsCards;
|
||||
ToggleState: typeof ToggleState;
|
||||
BaseWizard: typeof BaseWizard;
|
||||
// Layout Components
|
||||
DefaultLayout: typeof DefaultLayout;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user