"use client" import { useState } from "react" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Label } from "@/components/ui/label" import { useAdminDriveOrgFolderMutations, useAdminDriveOrgFolders, } from "@/lib/api/hooks/use-admin-drive-queries" export function DriveOrgFoldersSection() { const folders = useAdminDriveOrgFolders() const { create, remove, sync } = useAdminDriveOrgFolderMutations() const [orgSlug, setOrgSlug] = useState("") const [mountPoint, setMountPoint] = useState("") const [syncSlugs, setSyncSlugs] = useState("") return (

Dossiers d'organisation

Group folders Nextcloud liés aux organisations Authentik.

setOrgSlug(e.target.value)} placeholder="acme" />
setMountPoint(e.target.value)} placeholder="Acme Corp" />
setSyncSlugs(e.target.value)} placeholder="acme, beta" />
) }