mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-23 07:09:41 +02:00
remove potentially sensitive fields from group self
This commit is contained in:
parent
b6ccb9fbdb
commit
52c6fe34b2
5 changed files with 29 additions and 7 deletions
|
@ -1,8 +1,8 @@
|
|||
import { useAsync, ref } from "@nuxtjs/composition-api";
|
||||
import { useUserApi } from "~/composables/api";
|
||||
import { GroupBase, GroupInDB } from "~/lib/api/types/user";
|
||||
import { GroupBase, GroupSummary } from "~/lib/api/types/user";
|
||||
|
||||
const groupSelfRef = ref<GroupInDB | null>(null);
|
||||
const groupSelfRef = ref<GroupSummary | null>(null);
|
||||
const loading = ref(false);
|
||||
|
||||
export const useGroupSelf = function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue