Tiny adjustments

This commit is contained in:
Sebastien Castiel
2023-12-11 10:26:13 -05:00
parent c504a77338
commit 69fa008ea4
6 changed files with 42 additions and 19 deletions

View File

@@ -0,0 +1,7 @@
'use server'
import { getGroups } from "@/lib/api"
export async function getGroupsAction(groupIds: string[]) {
'use server'
return getGroups(groupIds)
}