dashboard: add staff vuex store
This commit is contained in:
parent
d03d729438
commit
f90ee12b9f
3 changed files with 44 additions and 0 deletions
15
backend/src/api/staff.ts
Normal file
15
backend/src/api/staff.ts
Normal file
|
@ -0,0 +1,15 @@
|
|||
import express, { Request, Response } from "express";
|
||||
import { apiTokenAuthHandlers } from "./auth";
|
||||
import { isStaff } from "../staff";
|
||||
|
||||
export function initStaff(app: express.Express) {
|
||||
const staffRouter = express.Router();
|
||||
staffRouter.use(...apiTokenAuthHandlers());
|
||||
|
||||
staffRouter.get("/status", (req: Request, res: Response) => {
|
||||
const userIsStaff = isStaff(req.user.userId);
|
||||
res.json({ isStaff: userIsStaff });
|
||||
});
|
||||
|
||||
app.use("/staff", staffRouter);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue