Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import type { Express } from "express";
import { authStorage } from "./storage";
import { isAuthenticated } from "./oauthAuth";
// Register auth-specific routes
export function registerAuthRoutes(app: Express): void {
// Get current authenticated user
app.get("/api/auth/user", isAuthenticated, async (req: any, res) => {
try {
const userId = req.user.claims.sub;
const user = await authStorage.getUser(userId);
res.json(user);
} catch (error) {
console.error("Error fetching user:", error);
res.status(500).json({ message: "Failed to fetch user" });
}
});
}
|