1
0
forked from baron/baron-sso

adminfront에 API Key 관리 및 RBAC 기능 추가

This commit is contained in:
2026-01-28 17:13:53 +09:00
parent 3e95650024
commit df03771121
9 changed files with 548 additions and 14 deletions

View File

@@ -0,0 +1,34 @@
import { ChevronLeft } from "lucide-react";
import { Link } from "react-router-dom";
import { Button } from "../../components/ui/button";
function ApiKeyCreatePage() {
return (
<div className="space-y-8">
<header className="space-y-2">
<Link
to="/api-keys"
className="flex items-center gap-1 text-sm text-[var(--color-muted)] hover:text-foreground"
>
<ChevronLeft size={14} />
Back to list
</Link>
<h2 className="text-3xl font-semibold"> API </h2>
<p className="text-sm text-[var(--color-muted)]">
Machine-to-Machine API .
</p>
</header>
<div className="rounded-lg border border-dashed p-12 text-center">
<p className="text-[var(--color-muted)]">
API .
</p>
<Button className="mt-4" disabled>
( )
</Button>
</div>
</div>
);
}
export default ApiKeyCreatePage;