Integrated "created by" system

This commit is contained in:
2025-11-20 09:22:59 -05:00
parent 7a31c77c7e
commit 105b28d9a4
3 changed files with 16 additions and 2 deletions

View File

@@ -56,9 +56,11 @@ eventRouter.get('/attendees/:id', async (req: Request, res: Response) => {
})
eventRouter.post('/', async (req: Request, res: Response) => {
const posterID: number = req.user.id;
try {
console.log();
const data: CourseEventDetails = req.body;
let data: CourseEventDetails = req.body;
data.created_by = posterID;
const id = await insertCourseEvent(data);
res.status(201).json(id);
} catch (error) {

View File

@@ -20,4 +20,15 @@ export async function setUserState(userID: number, state: MemberState) {
SET state = ?
WHERE id = ?;`;
return await pool.query(sql, [state, userID]);
}
}
declare global {
namespace Express {
interface Request {
user: {
id: number;
name: string;
};
}
}
}