Join group by URL (Closes #55)

This commit is contained in:
Sebastien Castiel
2024-01-24 11:12:55 -05:00
parent 7956156d70
commit 545cf75e99
5 changed files with 180 additions and 37 deletions

View File

@@ -0,0 +1,8 @@
'use server'
import { getGroup } from '@/lib/api'
export async function getGroupInfoAction(groupId: string) {
'use server'
return getGroup(groupId)
}