Feat: RBAC, Keys Extension, Invites

feat: org members page — invite users, cancel invites, change roles
feat: show pending invitations banner on profile page
feat: invite accept flow for existing users (no password needed)
feat: departments page updates
feat: SSH keys page — dept cert policy UI (expiry + extensions)
feat: wire up auth pages to real API (register, verify, reset, OIDC)
feat: CLI auth bridge — login page handles CLI token flow
feat: admin users — suspend/unsuspend, role badges, role filter
feat: add admin OAuth providers management page
feat: activity page — org-wide audit log view for admins
feat: add my memberships page
chore: add isOrgAdmin/isOrgMember to AuthContext, restrict sidebar
chore: update app routing and shared layout
This commit is contained in:
2026-03-01 16:50:19 +05:45
parent 62f767474b
commit 4c01fd0107
22 changed files with 2457 additions and 496 deletions
+29 -6
View File
@@ -1,27 +1,43 @@
import { useState } from "react";
import { useNavigate } from "react-router-dom";
import { Lock, ArrowRight, CheckCircle } from "lucide-react";
import { useNavigate, useSearchParams } from "react-router-dom";
import { Lock, ArrowRight, CheckCircle, AlertCircle, Loader2 } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { api } from "@/lib/api";
export default function ResetPasswordPage() {
const navigate = useNavigate();
const [searchParams] = useSearchParams();
const token = searchParams.get("token") || "";
const [password, setPassword] = useState("");
const [confirmPassword, setConfirmPassword] = useState("");
const [isLoading, setIsLoading] = useState(false);
const [isSuccess, setIsSuccess] = useState(false);
const [error, setError] = useState("");
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setError("");
if (password !== confirmPassword) {
setError("Passwords do not match.");
return;
}
if (!token) {
setError("Invalid reset link. Please request a new one.");
return;
}
setIsLoading(true);
setTimeout(() => {
setIsLoading(false);
try {
await api.auth.resetPassword(token, password);
setIsSuccess(true);
}, 1000);
} catch (err: unknown) {
const msg = err instanceof Error ? err.message : "Failed to reset password. The link may be expired.";
setError(msg);
} finally {
setIsLoading(false);
}
};
if (isSuccess) {
@@ -96,7 +112,7 @@ export default function ResetPasswordPage() {
<Button type="submit" className="w-full" disabled={isLoading}>
{isLoading ? (
"Resetting..."
<><Loader2 className="w-4 h-4 mr-2 animate-spin" />Resetting...</>
) : (
<>
Reset password
@@ -104,6 +120,13 @@ export default function ResetPasswordPage() {
</>
)}
</Button>
{error && (
<p className="text-sm text-destructive flex items-center gap-2">
<AlertCircle className="w-4 h-4 flex-shrink-0" />
{error}
</p>
)}
</form>
</div>
);